Files
mesa/src
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-04 14:05:18 -04: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-04-15 13:44:29 -07:00
2019-07-29 21:26:07 +00:00