Pierre-Eric Pelloux-Prayer
ef84d93f3d
mesa: add EXT_dsa indexed texture commands functions
Added functions:
- EnableClientStateIndexedEXT
- DisableClientStateIndexedEXT
- EnableClientStateiEXT
- DisableClientStateiEXT
Implemented using the idiom provided by the spec:
if (array == TEXTURE_COORD_ARRAY) {
int savedClientActiveTexture;
GetIntegerv(CLIENT_ACTIVE_TEXTURE, &savedClientActiveTexture);
ClientActiveTexture(TEXTURE0+index);
XXX(array);
ClientActiveTexture(savedActiveTexture);
} else {
// Invalid enum
}
2019-07-30 22:04:26 -04:00
..
2019-07-30 22:33:24 +02:00
2019-07-25 08:56:19 -07:00
2019-07-30 17:43:59 +00:00
2019-07-25 08:56:19 -07:00
2019-07-25 05:14:36 +00:00
2019-07-04 14:05:18 -04:00
2019-07-29 15:15:31 -07:00
2019-07-30 23:01:15 +02:00
2019-07-10 11:27:51 +00:00
2019-07-30 11:49:09 -07:00
2019-04-29 21:17:19 +00:00
2019-06-18 15:34:13 +00:00
2019-07-30 22:38:19 +00:00
2019-04-15 13:44:29 -07:00
2019-07-30 22:04:26 -04:00
2019-07-30 22:04:26 -04:00
2019-07-30 10:49:13 -07:00
2019-07-30 11:49:09 -07:00
2019-07-29 21:26:07 +00:00
2019-07-25 08:56:19 -07:00