1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588
|
/*
** Copyright 2006, The Android Open Source Project
**
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
**
** http://www.apache.org/licenses/LICENSE-2.0
**
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*/
#include <stdlib.h>
#include <stdio.h>
#include "context.h"
#include "fp.h"
#include "state.h"
#include "matrix.h"
#include "vertex.h"
#include "light.h"
#include "primitives.h"
#include "texture.h"
#include "BufferObjectManager.h"
// ----------------------------------------------------------------------------
#define VC_CACHE_STATISTICS 0
#define VC_CACHE_TYPE_NONE 0
#define VC_CACHE_TYPE_INDEXED 1
#define VC_CACHE_TYPE_LRU 2
#define VC_CACHE_TYPE VC_CACHE_TYPE_INDEXED
#if VC_CACHE_STATISTICS
#include <utils/Timers.h>
#endif
// ----------------------------------------------------------------------------
namespace android {
static void validate_arrays(ogles_context_t* c, GLenum mode);
static void compileElements__generic(ogles_context_t*,
vertex_t*, GLint, GLsizei);
static void compileElement__generic(ogles_context_t*,
vertex_t*, GLint);
static void drawPrimitivesPoints(ogles_context_t*, GLint, GLsizei);
static void drawPrimitivesLineStrip(ogles_context_t*, GLint, GLsizei);
static void drawPrimitivesLineLoop(ogles_context_t*, GLint, GLsizei);
static void drawPrimitivesLines(ogles_context_t*, GLint, GLsizei);
static void drawPrimitivesTriangleStrip(ogles_context_t*, GLint, GLsizei);
static void drawPrimitivesTriangleFan(ogles_context_t*, GLint, GLsizei);
static void drawPrimitivesTriangles(ogles_context_t*, GLint, GLsizei);
static void drawIndexedPrimitivesPoints(ogles_context_t*,
GLsizei, const GLvoid*);
static void drawIndexedPrimitivesLineStrip(ogles_context_t*,
GLsizei, const GLvoid*);
static void drawIndexedPrimitivesLineLoop(ogles_context_t*,
GLsizei, const GLvoid*);
static void drawIndexedPrimitivesLines(ogles_context_t*,
GLsizei, const GLvoid*);
static void drawIndexedPrimitivesTriangleStrip(ogles_context_t*,
GLsizei, const GLvoid*);
static void drawIndexedPrimitivesTriangleFan(ogles_context_t*,
GLsizei, const GLvoid*);
static void drawIndexedPrimitivesTriangles(ogles_context_t*,
GLsizei, const GLvoid*);
// ----------------------------------------------------------------------------
typedef void (*arrays_prims_fct_t)(ogles_context_t*, GLint, GLsizei);
static const arrays_prims_fct_t drawArraysPrims[] = {
drawPrimitivesPoints,
drawPrimitivesLines,
drawPrimitivesLineLoop,
drawPrimitivesLineStrip,
drawPrimitivesTriangles,
drawPrimitivesTriangleStrip,
drawPrimitivesTriangleFan
};
typedef void (*elements_prims_fct_t)(ogles_context_t*, GLsizei, const GLvoid*);
static const elements_prims_fct_t drawElementsPrims[] = {
drawIndexedPrimitivesPoints,
drawIndexedPrimitivesLines,
drawIndexedPrimitivesLineLoop,
drawIndexedPrimitivesLineStrip,
drawIndexedPrimitivesTriangles,
drawIndexedPrimitivesTriangleStrip,
drawIndexedPrimitivesTriangleFan
};
// ----------------------------------------------------------------------------
#if 0
#pragma mark -
#endif
void ogles_init_array(ogles_context_t* c)
{
c->arrays.vertex.size = 4;
c->arrays.vertex.type = GL_FLOAT;
c->arrays.color.size = 4;
c->arrays.color.type = GL_FLOAT;
c->arrays.normal.size = 4;
c->arrays.normal.type = GL_FLOAT;
for (int i=0 ; i<GGL_TEXTURE_UNIT_COUNT ; i++) {
c->arrays.texture[i].size = 4;
c->arrays.texture[i].type = GL_FLOAT;
}
c->vc.init();
if (!c->vc.vBuffer) {
// this could have failed
ogles_error(c, GL_OUT_OF_MEMORY);
}
}
void ogles_uninit_array(ogles_context_t* c)
{
c->vc.uninit();
}
// ----------------------------------------------------------------------------
#if 0
#pragma mark -
#pragma mark Array fetchers
#endif
static void currentColor(ogles_context_t* c, GLfixed* v, const GLvoid*) {
memcpy(v, c->current.color.v, sizeof(vec4_t));
}
static void currentColor_clamp(ogles_context_t* c, GLfixed* v, const GLvoid*) {
memcpy(v, c->currentColorClamped.v, sizeof(vec4_t));
}
static void currentNormal(ogles_context_t* c, GLfixed* v, const GLvoid*) {
memcpy(v, c->currentNormal.v, sizeof(vec3_t));
}
static void currentTexCoord(ogles_context_t* c, GLfixed* v, const GLvoid*) {
memcpy(v, c->current.texture[c->arrays.tmu].v, sizeof(vec4_t));
}
static void fetchNop(ogles_context_t*, GLfixed*, const GLvoid*) {
}
static void fetch2b(ogles_context_t*, GLfixed* v, const GLbyte* p) {
v[0] = gglIntToFixed(p[0]);
v[1] = gglIntToFixed(p[1]);
}
static void fetch2s(ogles_context_t*, GLfixed* v, const GLshort* p) {
v[0] = gglIntToFixed(p[0]);
v[1] = gglIntToFixed(p[1]);
}
static void fetch2x(ogles_context_t*, GLfixed* v, const GLfixed* p) {
memcpy(v, p, 2*sizeof(GLfixed));
}
static void fetch2f(ogles_context_t*, GLfixed* v, const GLfloat* p) {
v[0] = gglFloatToFixed(p[0]);
v[1] = gglFloatToFixed(p[1]);
}
static void fetch3b(ogles_context_t*, GLfixed* v, const GLbyte* p) {
v[0] = gglIntToFixed(p[0]);
v[1] = gglIntToFixed(p[1]);
v[2] = gglIntToFixed(p[2]);
}
static void fetch3s(ogles_context_t*, GLfixed* v, const GLshort* p) {
v[0] = gglIntToFixed(p[0]);
v[1] = gglIntToFixed(p[1]);
v[2] = gglIntToFixed(p[2]);
}
static void fetch3x(ogles_context_t*, GLfixed* v, const GLfixed* p) {
memcpy(v, p, 3*sizeof(GLfixed));
}
static void fetch3f(ogles_context_t*, GLfixed* v, const GLfloat* p) {
v[0] = gglFloatToFixed(p[0]);
v[1] = gglFloatToFixed(p[1]);
v[2] = gglFloatToFixed(p[2]);
}
static void fetch4b(ogles_context_t*, GLfixed* v, const GLbyte* p) {
v[0] = gglIntToFixed(p[0]);
v[1] = gglIntToFixed(p[1]);
v[2] = gglIntToFixed(p[2]);
v[3] = gglIntToFixed(p[3]);
}
static void fetch4s(ogles_context_t*, GLfixed* v, const GLshort* p) {
v[0] = gglIntToFixed(p[0]);
v[1] = gglIntToFixed(p[1]);
v[2] = gglIntToFixed(p[2]);
v[3] = gglIntToFixed(p[3]);
}
static void fetch4x(ogles_context_t*, GLfixed* v, const GLfixed* p) {
memcpy(v, p, 4*sizeof(GLfixed));
}
static void fetch4f(ogles_context_t*, GLfixed* v, const GLfloat* p) {
v[0] = gglFloatToFixed(p[0]);
v[1] = gglFloatToFixed(p[1]);
v[2] = gglFloatToFixed(p[2]);
v[3] = gglFloatToFixed(p[3]);
}
static void fetchExpand4ub(ogles_context_t*, GLfixed* v, const GLubyte* p) {
v[0] = GGL_UB_TO_X(p[0]);
v[1] = GGL_UB_TO_X(p[1]);
v[2] = GGL_UB_TO_X(p[2]);
v[3] = GGL_UB_TO_X(p[3]);
}
static void fetchClamp4x(ogles_context_t*, GLfixed* v, const GLfixed* p) {
v[0] = gglClampx(p[0]);
v[1] = gglClampx(p[1]);
v[2] = gglClampx(p[2]);
v[3] = gglClampx(p[3]);
}
static void fetchClamp4f(ogles_context_t*, GLfixed* v, const GLfloat* p) {
v[0] = gglClampx(gglFloatToFixed(p[0]));
v[1] = gglClampx(gglFloatToFixed(p[1]));
v[2] = gglClampx(gglFloatToFixed(p[2]));
v[3] = gglClampx(gglFloatToFixed(p[3]));
}
static void fetchExpand3ub(ogles_context_t*, GLfixed* v, const GLubyte* p) {
v[0] = GGL_UB_TO_X(p[0]);
v[1] = GGL_UB_TO_X(p[1]);
v[2] = GGL_UB_TO_X(p[2]);
v[3] = 0x10000;
}
static void fetchClamp3x(ogles_context_t*, GLfixed* v, const GLfixed* p) {
v[0] = gglClampx(p[0]);
v[1] = gglClampx(p[1]);
v[2] = gglClampx(p[2]);
v[3] = 0x10000;
}
static void fetchClamp3f(ogles_context_t*, GLfixed* v, const GLfloat* p) {
v[0] = gglClampx(gglFloatToFixed(p[0]));
v[1] = gglClampx(gglFloatToFixed(p[1]));
v[2] = gglClampx(gglFloatToFixed(p[2]));
v[3] = 0x10000;
}
static void fetchExpand3b(ogles_context_t*, GLfixed* v, const GLbyte* p) {
v[0] = GGL_B_TO_X(p[0]);
v[1] = GGL_B_TO_X(p[1]);
v[2] = GGL_B_TO_X(p[2]);
}
static void fetchExpand3s(ogles_context_t*, GLfixed* v, const GLshort* p) {
v[0] = GGL_S_TO_X(p[0]);
v[1] = GGL_S_TO_X(p[1]);
v[2] = GGL_S_TO_X(p[2]);
}
typedef array_t::fetcher_t fn_t;
static const fn_t color_fct[2][16] = { // size={3,4}, type={ub,f,x}
{ 0, (fn_t)fetchExpand3ub, 0, 0, 0, 0,
(fn_t)fetch3f, 0, 0, 0, 0, 0,
(fn_t)fetch3x },
{ 0, (fn_t)fetchExpand4ub, 0, 0, 0, 0,
(fn_t)fetch4f, 0, 0, 0, 0, 0,
(fn_t)fetch4x },
};
static const fn_t color_clamp_fct[2][16] = { // size={3,4}, type={ub,f,x}
{ 0, (fn_t)fetchExpand3ub, 0, 0, 0, 0,
(fn_t)fetchClamp3f, 0, 0, 0, 0, 0,
(fn_t)fetchClamp3x },
{ 0, (fn_t)fetchExpand4ub, 0, 0, 0, 0,
(fn_t)fetchClamp4f, 0, 0, 0, 0, 0,
(fn_t)fetchClamp4x },
};
static const fn_t normal_fct[1][16] = { // size={3}, type={b,s,f,x}
{ (fn_t)fetchExpand3b, 0,
(fn_t)fetchExpand3s, 0, 0, 0,
(fn_t)fetch3f, 0, 0, 0, 0, 0,
(fn_t)fetch3x },
};
static const fn_t vertex_fct[3][16] = { // size={2,3,4}, type={b,s,f,x}
{ (fn_t)fetch2b, 0,
(fn_t)fetch2s, 0, 0, 0,
(fn_t)fetch2f, 0, 0, 0, 0, 0,
(fn_t)fetch3x },
{ (fn_t)fetch3b, 0,
(fn_t)fetch3s, 0, 0, 0,
(fn_t)fetch3f, 0, 0, 0, 0, 0,
(fn_t)fetch3x },
{ (fn_t)fetch4b, 0,
(fn_t)fetch4s, 0, 0, 0,
(fn_t)fetch4f, 0, 0, 0, 0, 0,
(fn_t)fetch4x }
};
static const fn_t texture_fct[3][16] = { // size={2,3,4}, type={b,s,f,x}
{ (fn_t)fetch2b, 0,
(fn_t)fetch2s, 0, 0, 0,
(fn_t)fetch2f, 0, 0, 0, 0, 0,
(fn_t)fetch2x },
{ (fn_t)fetch3b, 0,
(fn_t)fetch3s, 0, 0, 0,
(fn_t)fetch3f, 0, 0, 0, 0, 0,
(fn_t)fetch3x },
{ (fn_t)fetch4b, 0,
(fn_t)fetch4s, 0, 0, 0,
(fn_t)fetch4f, 0, 0, 0, 0, 0,
(fn_t)fetch4x }
};
// ----------------------------------------------------------------------------
#if 0
#pragma mark -
#pragma mark array_t
#endif
void array_t::init(
GLint size, GLenum type, GLsizei stride,
const GLvoid *pointer, const buffer_t* bo, GLsizei count)
{
if (!stride) {
stride = size;
switch (type) {
case GL_SHORT:
case GL_UNSIGNED_SHORT:
stride *= 2;
break;
case GL_FLOAT:
case GL_FIXED:
stride *= 4;
break;
}
}
this->size = size;
this->type = type;
this->stride = stride;
this->pointer = pointer;
this->bo = bo;
this->bounds = count;
}
inline void array_t::resolve()
{
physical_pointer = (bo) ? (bo->data + uintptr_t(pointer)) : pointer;
}
// ----------------------------------------------------------------------------
#if 0
#pragma mark -
#pragma mark vertex_cache_t
#endif
void vertex_cache_t::init()
{
// make sure the size of vertex_t allows cache-line alignment
CTA<(sizeof(vertex_t) & 0x1F) == 0> assertAlignedSize;
const int align = 32;
const size_t s = VERTEX_BUFFER_SIZE + VERTEX_CACHE_SIZE;
const size_t size = s*sizeof(vertex_t) + align;
base = malloc(size);
if (base) {
memset(base, 0, size);
vBuffer = (vertex_t*)((size_t(base) + align - 1) & ~(align-1));
vCache = vBuffer + VERTEX_BUFFER_SIZE;
sequence = 0;
}
}
void vertex_cache_t::uninit()
{
free(base);
base = vBuffer = vCache = 0;
}
void vertex_cache_t::clear()
{
#if VC_CACHE_STATISTICS
startTime = systemTime(SYSTEM_TIME_THREAD);
total = 0;
misses = 0;
#endif
#if VC_CACHE_TYPE == VC_CACHE_TYPE_LRU
vertex_t* v = vBuffer;
size_t count = VERTEX_BUFFER_SIZE + VERTEX_CACHE_SIZE;
do {
v->mru = 0;
v++;
} while (--count);
#endif
sequence += INDEX_SEQ;
if (sequence >= 0x80000000LU) {
sequence = INDEX_SEQ;
vertex_t* v = vBuffer;
size_t count = VERTEX_BUFFER_SIZE + VERTEX_CACHE_SIZE;
do {
v->index = 0;
v++;
} while (--count);
}
}
void vertex_cache_t::dump_stats(GLenum mode)
{
#if VC_CACHE_STATISTICS
nsecs_t time = systemTime(SYSTEM_TIME_THREAD) - startTime;
uint32_t hits = total - misses;
uint32_t prim_count;
switch (mode) {
case GL_POINTS: prim_count = total; break;
case GL_LINE_STRIP: prim_count = total - 1; break;
case GL_LINE_LOOP: prim_count = total - 1; break;
case GL_LINES: prim_count = total / 2; break;
case GL_TRIANGLE_STRIP: prim_count = total - 2; break;
case GL_TRIANGLE_FAN: prim_count = total - 2; break;
case GL_TRIANGLES: prim_count = total / 3; break;
default: return;
}
printf( "total=%5u, hits=%5u, miss=%5u, hitrate=%3u%%,"
" prims=%5u, time=%6u us, prims/s=%d, v/t=%f\n",
total, hits, misses, (hits*100)/total,
prim_count, int(ns2us(time)), int(prim_count*float(seconds(1))/time),
float(misses) / prim_count);
#endif
}
// ----------------------------------------------------------------------------
#if 0
#pragma mark -
#endif
static __attribute__((noinline))
void enableDisableClientState(ogles_context_t* c, GLenum array, bool enable)
{
const int tmu = c->arrays.activeTexture;
array_t* a;
switch (array) {
case GL_COLOR_ARRAY: a = &c->arrays.color; break;
case GL_NORMAL_ARRAY: a = &c->arrays.normal; break;
case GL_TEXTURE_COORD_ARRAY: a = &c->arrays.texture[tmu]; break;
case GL_VERTEX_ARRAY: a = &c->arrays.vertex; break;
default:
ogles_error(c, GL_INVALID_ENUM);
return;
}
a->enable = enable ? GL_TRUE : GL_FALSE;
}
// ----------------------------------------------------------------------------
#if 0
#pragma mark -
#pragma mark Vertex Cache
#endif
static __attribute__((noinline))
vertex_t* cache_vertex(ogles_context_t* c, vertex_t* v, uint32_t index)
{
#if VC_CACHE_STATISTICS
c->vc.misses++;
#endif
if (ggl_unlikely(v->locked)) {
// we're just looking for an entry in the cache that is not locked.
// and we know that there cannot be more than 2 locked entries
// because a triangle needs at most 3 vertices.
// We never use the first and second entries because they might be in
// use by the striper or faner. Any other entry will do as long as
// it's not locked.
// We compute directly the index of a "free" entry from the locked
// state of v[2] and v[3].
v = c->vc.vBuffer + 2;
v += v[0].locked | (v[1].locked<<1);
}
// note: compileElement clears v->flags
c->arrays.compileElement(c, v, index);
v->locked = 1;
return v;
}
static __attribute__((noinline))
vertex_t* fetch_vertex(ogles_context_t* c, size_t index)
{
index |= c->vc.sequence;
#if VC_CACHE_TYPE == VC_CACHE_TYPE_INDEXED
vertex_t* const v = c->vc.vCache +
(index & (vertex_cache_t::VERTEX_CACHE_SIZE-1));
if (ggl_likely(v->index == index)) {
v->locked = 1;
return v;
}
return cache_vertex(c, v, index);
#elif VC_CACHE_TYPE == VC_CACHE_TYPE_LRU
vertex_t* v = c->vc.vCache +
(index & ((vertex_cache_t::VERTEX_CACHE_SIZE-1)>>1))*2;
// always record LRU in v[0]
if (ggl_likely(v[0].index == index)) {
v[0].locked = 1;
v[0].mru = 0;
return &v[0];
}
if (ggl_likely(v[1].index == index)) {
v[1].locked = 1;
v[0].mru = 1;
return &v[1];
}
const int lru = 1 - v[0].mru;
v[0].mru = lru;
return cache_vertex(c, &v[lru], index);
#elif VC_CACHE_TYPE == VC_CACHE_TYPE_NONE
// just for debugging...
vertex_t* v = c->vc.vBuffer + 2;
return cache_vertex(c, v, index);
#endif
}
// ----------------------------------------------------------------------------
#if 0
#pragma mark -
#pragma mark Primitive Assembly
#endif
void drawPrimitivesPoints(ogles_context_t* c, GLint first, GLsizei count)
{
if (ggl_unlikely(count < 1))
return;
// vertex cache size must be multiple of 1
const GLsizei vcs =
(vertex_cache_t::VERTEX_BUFFER_SIZE +
vertex_cache_t::VERTEX_CACHE_SIZE);
do {
vertex_t* v = c->vc.vBuffer;
GLsizei num = count > vcs ? vcs : count;
c->arrays.cull = vertex_t::CLIP_ALL;
c->arrays.compileElements(c, v, first, num);
first += num;
count -= num;
if (!c->arrays.cull) {
// quick/trivial reject of the whole batch
do {
const uint32_t cc = v[0].flags;
if (ggl_likely(!(cc & vertex_t::CLIP_ALL)))
c->prims.renderPoint(c, v);
v++;
num--;
} while (num);
}
} while (count);
}
// ----------------------------------------------------------------------------
void drawPrimitivesLineStrip(ogles_context_t* c, GLint first, GLsizei count)
{
if (ggl_unlikely(count < 2))
return;
vertex_t *v, *v0, *v1;
c->arrays.cull = vertex_t::CLIP_ALL;
c->arrays.compileElement(c, c->vc.vBuffer, first);
first += 1;
count -= 1;
// vertex cache size must be multiple of 1
const GLsizei vcs =
(vertex_cache_t::VERTEX_BUFFER_SIZE +
vertex_cache_t::VERTEX_CACHE_SIZE - 1);
do {
v0 = c->vc.vBuffer + 0;
v = c->vc.vBuffer + 1;
GLsizei num = count > vcs ? vcs : count;
c->arrays.compileElements(c, v, first, num);
first += num;
count -= num;
if (!c->arrays.cull) {
// quick/trivial reject of the whole batch
do {
v1 = v++;
const uint32_t cc = v0->flags & v1->flags;
if (ggl_likely(!(cc & vertex_t::CLIP_ALL)))
c->prims.renderLine(c, v0, v1);
v0 = v1;
num--;
} while (num);
}
// copy back the last processed vertex
c->vc.vBuffer[0] = *v0;
c->arrays.cull = v0->flags & vertex_t::CLIP_ALL;
} while (count);
}
void drawPrimitivesLineLoop(ogles_context_t* c, GLint first, GLsizei count)
{
if (ggl_unlikely(count < 2))
return;
drawPrimitivesLineStrip(c, first, count);
if (ggl_likely(count >= 3)) {
vertex_t* v0 = c->vc.vBuffer;
vertex_t* v1 = c->vc.vBuffer + 1;
c->arrays.compileElement(c, v1, first);
const uint32_t cc = v0->flags & v1->flags;
if (ggl_likely(!(cc & vertex_t::CLIP_ALL)))
c->prims.renderLine(c, v0, v1);
}
}
void drawPrimitivesLines(ogles_context_t* c, GLint first, GLsizei count)
{
if (ggl_unlikely(count < 2))
return;
// vertex cache size must be multiple of 2
const GLsizei vcs =
((vertex_cache_t::VERTEX_BUFFER_SIZE +
vertex_cache_t::VERTEX_CACHE_SIZE) / 2) * 2;
do {
vertex_t* v = c->vc.vBuffer;
GLsizei num = count > vcs ? vcs : count;
c->arrays.cull = vertex_t::CLIP_ALL;
c->arrays.compileElements(c, v, first, num);
first += num;
count -= num;
if (!c->arrays.cull) {
// quick/trivial reject of the whole batch
num -= 2;
do {
const uint32_t cc = v[0].flags & v[1].flags;
if (ggl_likely(!(cc & vertex_t::CLIP_ALL)))
c->prims.renderLine(c, v, v+1);
v += 2;
num -= 2;
} while (num >= 0);
}
} while (count >= 2);
}
// ----------------------------------------------------------------------------
static void drawPrimitivesTriangleFanOrStrip(ogles_context_t* c,
GLint first, GLsizei count, int winding)
{
// winding == 2 : fan
// winding == 1 : strip
if (ggl_unlikely(count < 3))
return;
vertex_t *v, *v0, *v1, *v2;
c->arrays.cull = vertex_t::CLIP_ALL;
c->arrays.compileElements(c, c->vc.vBuffer, first, 2);
first += 2;
count -= 2;
// vertex cache size must be multiple of 2. This is extremely important
// because it allows us to preserve the same winding when the whole
// batch is culled. We also need 2 extra vertices in the array, because
// we always keep the two first ones.
const GLsizei vcs =
((vertex_cache_t::VERTEX_BUFFER_SIZE +
vertex_cache_t::VERTEX_CACHE_SIZE - 2) / 2) * 2;
do {
v0 = c->vc.vBuffer + 0;
v1 = c->vc.vBuffer + 1;
v = c->vc.vBuffer + 2;
GLsizei num = count > vcs ? vcs : count;
c->arrays.compileElements(c, v, first, num);
first += num;
count -= num;
if (!c->arrays.cull) {
// quick/trivial reject of the whole batch
do {
v2 = v++;
const uint32_t cc = v0->flags & v1->flags & v2->flags;
if (ggl_likely(!(cc & vertex_t::CLIP_ALL)))
c->prims.renderTriangle(c, v0, v1, v2);
swap(((winding^=1) ? v1 : v0), v2);
num--;
} while (num);
}
if (count) {
v0 = c->vc.vBuffer + 2 + vcs - 2;
v1 = c->vc.vBuffer + 2 + vcs - 1;
if ((winding&2) == 0) {
// for strips copy back the two last compiled vertices
c->vc.vBuffer[0] = *v0;
}
c->vc.vBuffer[1] = *v1;
c->arrays.cull = v0->flags & v1->flags & vertex_t::CLIP_ALL;
}
} while (count > 0);
}
void drawPrimitivesTriangleStrip(ogles_context_t* c,
GLint first, GLsizei count) {
drawPrimitivesTriangleFanOrStrip(c, first, count, 1);
}
void drawPrimitivesTriangleFan(ogles_context_t* c,
GLint first, GLsizei count) {
drawPrimitivesTriangleFanOrStrip(c, first, count, 2);
}
void drawPrimitivesTriangles(ogles_context_t* c, GLint first, GLsizei count)
{
if (ggl_unlikely(count < 3))
return;
// vertex cache size must be multiple of 3
const GLsizei vcs =
((vertex_cache_t::VERTEX_BUFFER_SIZE +
vertex_cache_t::VERTEX_CACHE_SIZE) / 3) * 3;
do {
vertex_t* v = c->vc.vBuffer;
GLsizei num = count > vcs ? vcs : count;
c->arrays.cull = vertex_t::CLIP_ALL;
c->arrays.compileElements(c, v, first, num);
first += num;
count -= num;
if (!c->arrays.cull) {
// quick/trivial reject of the whole batch
num -= 3;
do {
const uint32_t cc = v[0].flags & v[1].flags & v[2].flags;
if (ggl_likely(!(cc & vertex_t::CLIP_ALL)))
c->prims.renderTriangle(c, v, v+1, v+2);
v += 3;
num -= 3;
} while (num >= 0);
}
} while (count >= 3);
}
// ----------------------------------------------------------------------------
#if 0
#pragma mark -
#endif
// this looks goofy, but gcc does a great job with this...
static inline unsigned int read_index(int type, const GLvoid*& p) {
unsigned int r;
if (type) {
r = *(const GLubyte*)p;
p = (const GLubyte*)p + 1;
} else {
r = *(const GLushort*)p;
p = (const GLushort*)p + 1;
}
return r;
}
// ----------------------------------------------------------------------------
void drawIndexedPrimitivesPoints(ogles_context_t* c,
GLsizei count, const GLvoid *indices)
{
if (ggl_unlikely(count < 1))
return;
const int type = (c->arrays.indicesType == GL_UNSIGNED_BYTE);
do {
vertex_t * v = fetch_vertex(c, read_index(type, indices));
if (ggl_likely(!(v->flags & vertex_t::CLIP_ALL)))
c->prims.renderPoint(c, v);
v->locked = 0;
count--;
} while(count);
}
// ----------------------------------------------------------------------------
void drawIndexedPrimitivesLineStrip(ogles_context_t* c,
GLsizei count, const GLvoid *indices)
{
if (ggl_unlikely(count < 2))
return;
vertex_t * const v = c->vc.vBuffer;
vertex_t* v0 = v;
vertex_t* v1;
const int type = (c->arrays.indicesType == GL_UNSIGNED_BYTE);
c->arrays.compileElement(c, v0, read_index(type, indices));
count -= 1;
do {
v1 = fetch_vertex(c, read_index(type, indices));
const uint32_t cc = v0->flags & v1->flags;
if (ggl_likely(!(cc & vertex_t::CLIP_ALL)))
c->prims.renderLine(c, v0, v1);
v0->locked = 0;
v0 = v1;
count--;
} while (count);
v1->locked = 0;
}
void drawIndexedPrimitivesLineLoop(ogles_context_t* c,
GLsizei count, const GLvoid *indices)
{
if (ggl_unlikely(count <= 2)) {
drawIndexedPrimitivesLines(c, count, indices);
return;
}
vertex_t * const v = c->vc.vBuffer;
vertex_t* v0 = v;
vertex_t* v1;
const int type = (c->arrays.indicesType == GL_UNSIGNED_BYTE);
c->arrays.compileElement(c, v0, read_index(type, indices));
count -= 1;
do {
v1 = fetch_vertex(c, read_index(type, indices));
const uint32_t cc = v0->flags & v1->flags;
if (ggl_likely(!(cc & vertex_t::CLIP_ALL)))
c->prims.renderLine(c, v0, v1);
v0->locked = 0;
v0 = v1;
count--;
} while (count);
v1->locked = 0;
v1 = c->vc.vBuffer;
const uint32_t cc = v0->flags & v1->flags;
if (ggl_likely(!(cc & vertex_t::CLIP_ALL)))
c->prims.renderLine(c, v0, v1);
}
void drawIndexedPrimitivesLines(ogles_context_t* c,
GLsizei count, const GLvoid *indices)
{
if (ggl_unlikely(count < 2))
return;
count -= 2;
const int type = (c->arrays.indicesType == GL_UNSIGNED_BYTE);
do {
vertex_t* const v0 = fetch_vertex(c, read_index(type, indices));
vertex_t* const v1 = fetch_vertex(c, read_index(type, indices));
const uint32_t cc = v0->flags & v1->flags;
if (ggl_likely(!(cc & vertex_t::CLIP_ALL)))
c->prims.renderLine(c, v0, v1);
v0->locked = 0;
v1->locked = 0;
count -= 2;
} while (count >= 0);
}
// ----------------------------------------------------------------------------
static void drawIndexedPrimitivesTriangleFanOrStrip(ogles_context_t* c,
GLsizei count, const GLvoid *indices, int winding)
{
// winding == 2 : fan
// winding == 1 : strip
if (ggl_unlikely(count < 3))
return;
vertex_t * const v = c->vc.vBuffer;
vertex_t* v0 = v;
vertex_t* v1 = v+1;
vertex_t* v2;
const int type = (c->arrays.indicesType == GL_UNSIGNED_BYTE);
c->arrays.compileElement(c, v0, read_index(type, indices));
c->arrays.compileElement(c, v1, read_index(type, indices));
count -= 2;
// note: GCC 4.1.1 here makes a prety interesting optimization
// where it duplicates the loop below based on c->arrays.indicesType
do {
v2 = fetch_vertex(c, read_index(type, indices));
const uint32_t cc = v0->flags & v1->flags & v2->flags;
if (ggl_likely(!(cc & vertex_t::CLIP_ALL)))
c->prims.renderTriangle(c, v0, v1, v2);
vertex_t* & consumed = ((winding^=1) ? v1 : v0);
consumed->locked = 0;
consumed = v2;
count--;
} while (count);
v0->locked = v1->locked = 0;
v2->locked = 0;
}
void drawIndexedPrimitivesTriangleStrip(ogles_context_t* c,
GLsizei count, const GLvoid *indices) {
drawIndexedPrimitivesTriangleFanOrStrip(c, count, indices, 1);
}
void drawIndexedPrimitivesTriangleFan(ogles_context_t* c,
GLsizei count, const GLvoid *indices) {
drawIndexedPrimitivesTriangleFanOrStrip(c, count, indices, 2);
}
void drawIndexedPrimitivesTriangles(ogles_context_t* c,
GLsizei count, const GLvoid *indices)
{
if (ggl_unlikely(count < 3))
return;
count -= 3;
if (ggl_likely(c->arrays.indicesType == GL_UNSIGNED_SHORT)) {
// This case is probably our most common case...
uint16_t const * p = (uint16_t const *)indices;
do {
vertex_t* const v0 = fetch_vertex(c, *p++);
vertex_t* const v1 = fetch_vertex(c, *p++);
vertex_t* const v2 = fetch_vertex(c, *p++);
const uint32_t cc = v0->flags & v1->flags & v2->flags;
if (ggl_likely(!(cc & vertex_t::CLIP_ALL)))
c->prims.renderTriangle(c, v0, v1, v2);
v0->locked = 0;
v1->locked = 0;
v2->locked = 0;
count -= 3;
} while (count >= 0);
} else {
uint8_t const * p = (uint8_t const *)indices;
do {
vertex_t* const v0 = fetch_vertex(c, *p++);
vertex_t* const v1 = fetch_vertex(c, *p++);
vertex_t* const v2 = fetch_vertex(c, *p++);
const uint32_t cc = v0->flags & v1->flags & v2->flags;
if (ggl_likely(!(cc & vertex_t::CLIP_ALL)))
c->prims.renderTriangle(c, v0, v1, v2);
v0->locked = 0;
v1->locked = 0;
v2->locked = 0;
count -= 3;
} while (count >= 0);
}
}
// ----------------------------------------------------------------------------
#if 0
#pragma mark -
#pragma mark Array compilers
#endif
void compileElement__generic(ogles_context_t* c,
vertex_t* v, GLint first)
{
v->flags = 0;
v->index = first;
first &= vertex_cache_t::INDEX_MASK;
const GLubyte* vp = c->arrays.vertex.element(first);
v->obj.z = 0;
v->obj.w = 0x10000;
c->arrays.vertex.fetch(c, v->obj.v, vp);
c->arrays.mvp_transform(&c->transforms.mvp, &v->clip, &v->obj);
c->arrays.perspective(c, v);
}
void compileElements__generic(ogles_context_t* c,
vertex_t* v, GLint first, GLsizei count)
{
const GLubyte* vp = c->arrays.vertex.element(
first & vertex_cache_t::INDEX_MASK);
const size_t stride = c->arrays.vertex.stride;
transform_t const* const mvp = &c->transforms.mvp;
do {
v->flags = 0;
v->index = first++;
v->obj.z = 0;
v->obj.w = 0x10000;
c->arrays.vertex.fetch(c, v->obj.v, vp);
c->arrays.mvp_transform(mvp, &v->clip, &v->obj);
c->arrays.perspective(c, v);
vp += stride;
v++;
} while (--count);
}
/*
void compileElements__3x_full(ogles_context_t* c,
vertex_t* v, GLint first, GLsizei count)
{
const GLfixed* vp = (const GLfixed*)c->arrays.vertex.element(first);
const size_t stride = c->arrays.vertex.stride / 4;
// const GLfixed* const& m = c->transforms.mvp.matrix.m;
GLfixed m[16];
memcpy(&m, c->transforms.mvp.matrix.m, sizeof(m));
do {
const GLfixed rx = vp[0];
const GLfixed ry = vp[1];
const GLfixed rz = vp[2];
vp += stride;
v->index = first++;
v->clip.x = mla3a(rx, m[ 0], ry, m[ 4], rz, m[ 8], m[12]);
v->clip.y = mla3a(rx, m[ 1], ry, m[ 5], rz, m[ 9], m[13]);
v->clip.z = mla3a(rx, m[ 2], ry, m[ 6], rz, m[10], m[14]);
v->clip.w = mla3a(rx, m[ 3], ry, m[ 7], rz, m[11], m[15]);
const GLfixed w = v->clip.w;
uint32_t clip = 0;
if (v->clip.x < -w) clip |= vertex_t::CLIP_L;
if (v->clip.x > w) clip |= vertex_t::CLIP_R;
if (v->clip.y < -w) clip |= vertex_t::CLIP_B;
if (v->clip.y > w) clip |= vertex_t::CLIP_T;
if (v->clip.z < -w) clip |= vertex_t::CLIP_N;
if (v->clip.z > w) clip |= vertex_t::CLIP_F;
v->flags = clip;
c->arrays.cull &= clip;
//c->arrays.perspective(c, v);
v++;
} while (--count);
}
*/
// ----------------------------------------------------------------------------
#if 0
#pragma mark -
#pragma mark clippers
#endif
static void clipVec4(vec4_t& nv,
GLfixed t, const vec4_t& s, const vec4_t& p)
{
for (int i=0; i<4 ; i++)
nv.v[i] = gglMulAddx(t, s.v[i] - p.v[i], p.v[i], 28);
}
static void clipVertex(ogles_context_t* c, vertex_t* nv,
GLfixed t, const vertex_t* s, const vertex_t* p)
{
clipVec4(nv->clip, t, s->clip, p->clip);
nv->fog = gglMulAddx(t, s->fog - p->fog, p->fog, 28);
ogles_vertex_project(c, nv);
nv->flags |= vertex_t::LIT | vertex_t::EYE | vertex_t::TT;
nv->flags &= ~vertex_t::CLIP_ALL;
}
static void clipVertexC(ogles_context_t* c, vertex_t* nv,
GLfixed t, const vertex_t* s, const vertex_t* p)
{
clipVec4(nv->color, t, s->color, p->color);
clipVertex(c, nv, t, s, p);
}
static void clipVertexT(ogles_context_t* c, vertex_t* nv,
GLfixed t, const vertex_t* s, const vertex_t* p)
{
for (int i=0 ; i<GGL_TEXTURE_UNIT_COUNT ; i++) {
if (c->rasterizer.state.texture[i].enable)
clipVec4(nv->texture[i], t, s->texture[i], p->texture[i]);
}
clipVertex(c, nv, t, s, p);
}
static void clipVertexAll(ogles_context_t* c, vertex_t* nv,
GLfixed t, const vertex_t* s, const vertex_t* p)
{
clipVec4(nv->color, t, s->color, p->color);
clipVertexT(c, nv, t, s, p);
}
static void clipEye(ogles_context_t* c, vertex_t* nv,
GLfixed t, const vertex_t* s, const vertex_t* p)
{
nv->clear();
c->arrays.clipVertex(c, nv, t, p, s);
clipVec4(nv->eye, t, s->eye, p->eye);
}
// ----------------------------------------------------------------------------
#if 0
#pragma mark -
#endif
void validate_arrays(ogles_context_t* c, GLenum mode)
{
uint32_t enables = c->rasterizer.state.enables;
// Perspective correction is not need if Ortho transform, but
// the user can still provide the w coordinate manually, so we can't
// automatically turn it off (in fact we could when the 4th coordinate
// is not spcified in the vertex array).
// W interpolation is never needed for points.
GLboolean perspective =
c->perspective && mode!=GL_POINTS && (enables & GGL_ENABLE_TMUS);
c->rasterizer.procs.enableDisable(c, GGL_W_LERP, perspective);
// set anti-aliasing
GLboolean smooth = GL_FALSE;
switch (mode) {
case GL_POINTS:
smooth = c->point.smooth;
break;
case GL_LINES:
case GL_LINE_LOOP:
case GL_LINE_STRIP:
smooth = c->line.smooth;
break;
}
if (((enables & GGL_ENABLE_AA)?1:0) != smooth)
c->rasterizer.procs.enableDisable(c, GGL_AA, smooth);
// set the shade model for this primitive
c->rasterizer.procs.shadeModel(c,
(mode == GL_POINTS) ? GL_FLAT : c->lighting.shadeModel);
// compute all the matrices we'll need...
uint32_t want =
transform_state_t::MVP |
transform_state_t::VIEWPORT;
if (c->lighting.enable) { // needs normal transforms and eye coords
want |= transform_state_t::MVUI;
want |= transform_state_t::MODELVIEW;
}
if (enables & GGL_ENABLE_TMUS) { // needs texture transforms
want |= transform_state_t::TEXTURE;
}
if (c->clipPlanes.enable || (enables & GGL_ENABLE_FOG)) {
want |= transform_state_t::MODELVIEW; // needs eye coords
}
ogles_validate_transform(c, want);
// textures...
if (enables & GGL_ENABLE_TMUS)
ogles_validate_texture(c);
// vertex compilers
c->arrays.compileElement = compileElement__generic;
c->arrays.compileElements = compileElements__generic;
// vertex transform
c->arrays.mvp_transform =
c->transforms.mvp.pointv[c->arrays.vertex.size - 2];
c->arrays.mv_transform =
c->transforms.modelview.transform.pointv[c->arrays.vertex.size - 2];
/*
* ***********************************************************************
* pick fetchers
* ***********************************************************************
*/
array_machine_t& am = c->arrays;
am.vertex.fetch = fetchNop;
am.normal.fetch = currentNormal;
am.color.fetch = currentColor;
if (am.vertex.enable) {
am.vertex.resolve();
if (am.vertex.bo || am.vertex.pointer) {
am.vertex.fetch = vertex_fct[am.vertex.size-2][am.vertex.type & 0xF];
}
}
if (am.normal.enable) {
am.normal.resolve();
if (am.normal.bo || am.normal.pointer) {
am.normal.fetch = normal_fct[am.normal.size-3][am.normal.type & 0xF];
}
}
if (am.color.enable) {
am.color.resolve();
if (c->lighting.enable) {
if (am.color.bo || am.color.pointer) {
am.color.fetch = color_fct[am.color.size-3][am.color.type & 0xF];
}
} else {
if (am.color.bo || am.color.pointer) {
am.color.fetch = color_clamp_fct[am.color.size-3][am.color.type & 0xF];
}
}
}
int activeTmuCount = 0;
for (int i=0 ; i<GGL_TEXTURE_UNIT_COUNT ; i++) {
am.texture[i].fetch = currentTexCoord;
if (c->rasterizer.state.texture[i].enable) {
// texture fetchers...
if (am.texture[i].enable) {
am.texture[i].resolve();
if (am.texture[i].bo || am.texture[i].pointer) {
am.texture[i].fetch = texture_fct[am.texture[i].size-2][am.texture[i].type & 0xF];
}
}
// texture transform...
const int index = c->arrays.texture[i].size - 2;
c->arrays.tex_transform[i] =
c->transforms.texture[i].transform.pointv[index];
am.tmu = i;
activeTmuCount++;
}
}
// pick the vertex-clipper
uint32_t clipper = 0;
// we must reload 'enables' here
enables = c->rasterizer.state.enables;
if (enables & GGL_ENABLE_SMOOTH)
clipper |= 1; // we need to interpolate colors
if (enables & GGL_ENABLE_TMUS)
clipper |= 2; // we need to interpolate textures
switch (clipper) {
case 0: c->arrays.clipVertex = clipVertex; break;
case 1: c->arrays.clipVertex = clipVertexC; break;
case 2: c->arrays.clipVertex = clipVertexT; break;
case 3: c->arrays.clipVertex = clipVertexAll; break;
}
c->arrays.clipEye = clipEye;
// pick the primitive rasterizer
ogles_validate_primitives(c);
}
// ----------------------------------------------------------------------------
}; // namespace android
// ----------------------------------------------------------------------------
using namespace android;
#if 0
#pragma mark -
#pragma mark array API
#endif
void glVertexPointer(
GLint size, GLenum type, GLsizei stride, const GLvoid *pointer)
{
ogles_context_t* c = ogles_context_t::get();
if (size<2 || size>4 || stride<0) {
ogles_error(c, GL_INVALID_VALUE);
return;
}
switch (type) {
case GL_BYTE:
case GL_SHORT:
case GL_FIXED:
case GL_FLOAT:
break;
default:
ogles_error(c, GL_INVALID_ENUM);
return;
}
c->arrays.vertex.init(size, type, stride, pointer, c->arrays.array_buffer, 0);
}
void glColorPointer(
GLint size, GLenum type, GLsizei stride, const GLvoid *pointer)
{
ogles_context_t* c = ogles_context_t::get();
if (size!=4 || stride<0) {
ogles_error(c, GL_INVALID_VALUE);
return;
}
switch (type) {
case GL_UNSIGNED_BYTE:
case GL_FIXED:
case GL_FLOAT:
break;
default:
ogles_error(c, GL_INVALID_ENUM);
return;
}
c->arrays.color.init(size, type, stride, pointer, c->arrays.array_buffer, 0);
}
void glNormalPointer(
GLenum type, GLsizei stride, const GLvoid *pointer)
{
ogles_context_t* c = ogles_context_t::get();
if (stride<0) {
ogles_error(c, GL_INVALID_VALUE);
return;
}
switch (type) {
case GL_BYTE:
case GL_SHORT:
case GL_FIXED:
case GL_FLOAT:
break;
default:
ogles_error(c, GL_INVALID_ENUM);
return;
}
c->arrays.normal.init(3, type, stride, pointer, c->arrays.array_buffer, 0);
}
void glTexCoordPointer(
GLint size, GLenum type, GLsizei stride, const GLvoid *pointer)
{
ogles_context_t* c = ogles_context_t::get();
if (size<2 || size>4 || stride<0) {
ogles_error(c, GL_INVALID_VALUE);
return;
}
switch (type) {
case GL_BYTE:
case GL_SHORT:
case GL_FIXED:
case GL_FLOAT:
break;
default:
ogles_error(c, GL_INVALID_ENUM);
return;
}
const int tmu = c->arrays.activeTexture;
c->arrays.texture[tmu].init(size, type, stride, pointer,
c->arrays.array_buffer, 0);
}
void glEnableClientState(GLenum array) {
ogles_context_t* c = ogles_context_t::get();
enableDisableClientState(c, array, true);
}
void glDisableClientState(GLenum array) {
ogles_context_t* c = ogles_context_t::get();
enableDisableClientState(c, array, false);
}
void glClientActiveTexture(GLenum texture)
{
ogles_context_t* c = ogles_context_t::get();
if (texture<GL_TEXTURE0 || texture>=GL_TEXTURE0+GGL_TEXTURE_UNIT_COUNT) {
ogles_error(c, GL_INVALID_ENUM);
return;
}
c->arrays.activeTexture = texture - GL_TEXTURE0;
}
void glDrawArrays(GLenum mode, GLint first, GLsizei count)
{
ogles_context_t* c = ogles_context_t::get();
if (count<0) {
ogles_error(c, GL_INVALID_VALUE);
return;
}
switch (mode) {
case GL_POINTS:
case GL_LINE_STRIP:
case GL_LINE_LOOP:
case GL_LINES:
case GL_TRIANGLE_STRIP:
case GL_TRIANGLE_FAN:
case GL_TRIANGLES:
break;
default:
ogles_error(c, GL_INVALID_ENUM);
return;
}
if (count == 0 || !c->arrays.vertex.enable)
return;
if ((c->cull.enable) && (c->cull.cullFace == GL_FRONT_AND_BACK))
return; // all triangles are culled
validate_arrays(c, mode);
const uint32_t enables = c->rasterizer.state.enables;
if (enables & GGL_ENABLE_TMUS)
ogles_lock_textures(c);
drawArraysPrims[mode](c, first, count);
if (enables & GGL_ENABLE_TMUS)
ogles_unlock_textures(c);
#if VC_CACHE_STATISTICS
c->vc.total = count;
c->vc.dump_stats(mode);
#endif
}
void glDrawElements(
GLenum mode, GLsizei count, GLenum type, const GLvoid *indices)
{
ogles_context_t* c = ogles_context_t::get();
if (count<0) {
ogles_error(c, GL_INVALID_VALUE);
return;
}
switch (mode) {
case GL_POINTS:
case GL_LINE_STRIP:
case GL_LINE_LOOP:
case GL_LINES:
case GL_TRIANGLE_STRIP:
case GL_TRIANGLE_FAN:
case GL_TRIANGLES:
break;
default:
ogles_error(c, GL_INVALID_ENUM);
return;
}
switch (type) {
case GL_UNSIGNED_BYTE:
case GL_UNSIGNED_SHORT:
c->arrays.indicesType = type;
break;
default:
ogles_error(c, GL_INVALID_ENUM);
return;
}
if (count == 0 || !c->arrays.vertex.enable)
return;
if ((c->cull.enable) && (c->cull.cullFace == GL_FRONT_AND_BACK))
return; // all triangles are culled
// clear the vertex-cache
c->vc.clear();
validate_arrays(c, mode);
// if indices are in a buffer object, the pointer is treated as an
// offset in that buffer.
if (c->arrays.element_array_buffer) {
indices = c->arrays.element_array_buffer->data + uintptr_t(indices);
}
const uint32_t enables = c->rasterizer.state.enables;
if (enables & GGL_ENABLE_TMUS)
ogles_lock_textures(c);
drawElementsPrims[mode](c, count, indices);
if (enables & GGL_ENABLE_TMUS)
ogles_unlock_textures(c);
#if VC_CACHE_STATISTICS
c->vc.total = count;
c->vc.dump_stats(mode);
#endif
}
// ----------------------------------------------------------------------------
// buffers
// ----------------------------------------------------------------------------
void glBindBuffer(GLenum target, GLuint buffer)
{
ogles_context_t* c = ogles_context_t::get();
if ((target!=GL_ARRAY_BUFFER) && (target!=GL_ELEMENT_ARRAY_BUFFER)) {
ogles_error(c, GL_INVALID_ENUM);
return;
}
// create a buffer object, or bind an existing one
buffer_t const* bo = 0;
if (buffer) {
bo = c->bufferObjectManager->bind(buffer);
if (!bo) {
ogles_error(c, GL_OUT_OF_MEMORY);
return;
}
}
((target == GL_ARRAY_BUFFER) ?
c->arrays.array_buffer : c->arrays.element_array_buffer) = bo;
}
void glBufferData(GLenum target, GLsizeiptr size, const GLvoid* data, GLenum usage)
{
ogles_context_t* c = ogles_context_t::get();
if ((target!=GL_ARRAY_BUFFER) && (target!=GL_ELEMENT_ARRAY_BUFFER)) {
ogles_error(c, GL_INVALID_ENUM);
return;
}
if (size<0) {
ogles_error(c, GL_INVALID_VALUE);
return;
}
if ((usage!=GL_STATIC_DRAW) && (usage!=GL_DYNAMIC_DRAW)) {
ogles_error(c, GL_INVALID_ENUM);
return;
}
buffer_t const* bo = ((target == GL_ARRAY_BUFFER) ?
c->arrays.array_buffer : c->arrays.element_array_buffer);
if (bo == 0) {
// can't modify buffer 0
ogles_error(c, GL_INVALID_OPERATION);
return;
}
buffer_t* edit_bo = const_cast<buffer_t*>(bo);
if (c->bufferObjectManager->allocateStore(edit_bo, size, usage) != 0) {
ogles_error(c, GL_OUT_OF_MEMORY);
return;
}
if (data) {
memcpy(bo->data, data, size);
}
}
void glBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid* data)
{
ogles_context_t* c = ogles_context_t::get();
if ((target!=GL_ARRAY_BUFFER) && (target!=GL_ELEMENT_ARRAY_BUFFER)) {
ogles_error(c, GL_INVALID_ENUM);
return;
}
if (offset<0 || size<0 || data==0) {
ogles_error(c, GL_INVALID_VALUE);
return;
}
buffer_t const* bo = ((target == GL_ARRAY_BUFFER) ?
c->arrays.array_buffer : c->arrays.element_array_buffer);
if (bo == 0) {
// can't modify buffer 0
ogles_error(c, GL_INVALID_OPERATION);
return;
}
if (offset+size > bo->size) {
ogles_error(c, GL_INVALID_VALUE);
return;
}
memcpy(bo->data + offset, data, size);
}
void glDeleteBuffers(GLsizei n, const GLuint* buffers)
{
ogles_context_t* c = ogles_context_t::get();
if (n<0) {
ogles_error(c, GL_INVALID_VALUE);
return;
}
for (int i=0 ; i<n ; i++) {
GLuint name = buffers[i];
if (name) {
// unbind bound deleted buffers...
if (c->arrays.element_array_buffer) {
if (c->arrays.element_array_buffer->name == name) {
c->arrays.element_array_buffer = 0;
}
}
if (c->arrays.array_buffer) {
if (c->arrays.array_buffer->name == name) {
c->arrays.array_buffer = 0;
}
}
if (c->arrays.vertex.bo) {
if (c->arrays.vertex.bo->name == name) {
c->arrays.vertex.bo = 0;
}
}
if (c->arrays.normal.bo) {
if (c->arrays.normal.bo->name == name) {
c->arrays.normal.bo = 0;
}
}
if (c->arrays.color.bo) {
if (c->arrays.color.bo->name == name) {
c->arrays.color.bo = 0;
}
}
for (int t=0 ; t<GGL_TEXTURE_UNIT_COUNT ; t++) {
if (c->arrays.texture[t].bo) {
if (c->arrays.texture[t].bo->name == name) {
c->arrays.texture[t].bo = 0;
}
}
}
}
}
c->bufferObjectManager->deleteBuffers(n, buffers);
c->bufferObjectManager->recycleTokens(n, buffers);
}
void glGenBuffers(GLsizei n, GLuint* buffers)
{
ogles_context_t* c = ogles_context_t::get();
if (n<0) {
ogles_error(c, GL_INVALID_VALUE);
return;
}
c->bufferObjectManager->getToken(n, buffers);
}
|