Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(70)

Unified Diff: gpu/GLES2/extensions/CHROMIUM/CHROMIUM_image.txt

Issue 2841573002: Revert of Fix blits from multisampled renderbuffers to alpha:false WebGL back buffer. (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/test/gpu/gpu_tests/webgl2_conformance_expectations.py ('k') | gpu/GLES2/gl2chromium_autogen.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/GLES2/extensions/CHROMIUM/CHROMIUM_image.txt
diff --git a/gpu/GLES2/extensions/CHROMIUM/CHROMIUM_image.txt b/gpu/GLES2/extensions/CHROMIUM/CHROMIUM_image.txt
index 0d6a4c46fd662f28f704d0562f307abe97541e5f..2ba1e39b843c2965ce048ef79b83e87ae15ed7ce 100644
--- a/gpu/GLES2/extensions/CHROMIUM/CHROMIUM_image.txt
+++ b/gpu/GLES2/extensions/CHROMIUM/CHROMIUM_image.txt
@@ -32,10 +32,10 @@ New Tokens
New Procedures and Functions
- GLuint CreateImageCHROMIUM(ClientBuffer buffer,
- GLsizei width,
- GLsizei height,
- GLenum internalformat)
+ GLuint CreateImageCHROMIUM(ClientBuffer buffer,
+ GLsizei width,
+ GLsizei height,
+ GLenum internalformat)
Create an image from <buffer> with width equal to <width> and
height equal to <height> and format equal to <internalformat>.
@@ -50,42 +50,12 @@ New Procedures and Functions
COMPRESSED_RGB_S3TC_DXT1_EXT, COMPRESSED_RGBA_S3TC_DXT5_EXT or
ETC1_RGB8_OES.
- void DestroyImageCHROMIUM(GLuint image_id)
+ void DestroyImageCHROMIUM(GLuint image_id)
Frees the image previously created by a call to CreateImageCHROMIUM.
INVALID_OPERATION is generated if <image_id> is not a valid image id.
- void BindTexImage2DCHROMIUM(GLenum target, GLint image_id)
-
- Binds the texture object currently bound to <target> to the image
- <image_id> previously created by a call to CreateImageCHROMIUM.
-
- INVALID_OPERATION is generated if no texture is bound to <target>.
-
- INVALID_OPERATION is generated if <image_id> is not a valid image id.
-
- void BindTexImage2DWithInternalformatCHROMIUM(GLenum target,
- GLenum internalformat,
- GLint image_id)
-
- Behaves exactly like BindTexImage2DCHROMIUM, but forces the
- texture to use the specified <internalformat> rather than the
- default one. This function is provided solely as a workaround for
- driver bugs on some platforms. BindTexImage2DCHROMIUM should be
- used by almost all users.
-
- void ReleaseTexImage2DCHROMIUM(GLenum target, GLint image_id)
-
- Unbinds the texture object bound to <target> from the image
- <image_id> previously created by a call to CreateImageCHROMIUM. If
- the texture is not currently bound to the image, has no effect,
- though may still generate errors.
-
- INVALID_OPERATION is generated if no texture is bound to <target>.
-
- INVALID_OPERATION is generated if <image_id> is not a valid image id.
-
Dependencies on EXT_texture_format_BGRA8888
If EXT_texture_format_BGRA8888 is not supported:
« no previous file with comments | « content/test/gpu/gpu_tests/webgl2_conformance_expectations.py ('k') | gpu/GLES2/gl2chromium_autogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698