11 Last Modifed Date: Oct 7, 2014
15 OpenGL ES 2.0 is required.
19 This extension defines a new resource type that is suitable for
20 sharing 2D arrays of image data between client APIs.
30 New Procedures and Functions
32 GLuint CreateImageCHROMIUM(ClientBuffer buffer,
35 GLenum internalformat)
37 Create an image from <buffer> with width equal to <width> and
38 height equal to <height> and format equal to <internalformat>.
40 Returns a unique identifier for the image that could be used in
41 subsequent operations.
43 INVALID_VALUE is generated if <width> or <height> is nonpositive.
45 INVALID_ENUM is generated if <internalformat> is not one of
48 void DestroyImageCHROMIUM(GLuint image_id)
50 Frees the image previously created by a call to CreateImageCHROMIUM.
52 INVALID_OPERATION is generated if <image_id> is not a valid image id.
64 5/9/2013 Documented the extension
65 4/30/2014 Moved usage flag to creation function.
66 10/7/2014 Remove map/unmap API.