Index: gpu/GLES2/extensions/CHROMIUM/CHROMIUM_get_multiple.txt |
diff --git a/gpu/GLES2/extensions/CHROMIUM/CHROMIUM_get_multiple.txt b/gpu/GLES2/extensions/CHROMIUM/CHROMIUM_get_multiple.txt |
index 0a357007e8b2b85b04b6cb1eb6de12f6bb1cd36f..d4685d59f5d10e046ed0ad979b0eee095430c81b 100644 |
--- a/gpu/GLES2/extensions/CHROMIUM/CHROMIUM_get_multiple.txt |
+++ b/gpu/GLES2/extensions/CHROMIUM/CHROMIUM_get_multiple.txt |
@@ -16,8 +16,8 @@ Dependencies |
Overview |
- This extension adds the ability to query multiple state and program |
- information in a single call. |
+ This extension adds the ability to query multiple program information in a |
+ single call. |
Issues |
@@ -28,27 +28,6 @@ New Tokens |
New Procedures and Functions |
- void GetMultipleIntegervCHROMIUM (const GLenum* pnames, GLuint count, |
- GLint* results, GLsizeiptr size) |
- |
- <pnames> points to an array of state enums that would normally be queried by |
- GetIntegerv. <count> is the number of pnames. <results> points memory large |
- enough to contain all the state being queried. <size> is the size of the |
- buffer pointed to be <results> |
- |
- Example: <pnames> points to an array with VIEWPORT and MAX_TEXTURE_SIZE. |
- VIEWPORT returns 4 values, MAX_TEXTURE_SIZE returns 1 value. Therefore |
- results must point to a buffer of size 5 * sizeof(GLint) and size must be at |
- least 5 * sizeof(GLint) |
- |
- INVALID_ENUM is generated if any of the pnames are not valid for GetIntegerv |
- |
- INVALID_VALUE is generated if <size> does not equal the size needed for the |
- query |
- |
- INVALID_VALUE is generated if the memory pointed to be <results> has not |
- been zeroed out. |
- |
void GetProgrmaInfoCHROMIUM (GLuint program, GLsizei bufsize, |
GLsizei* size, void* info) |