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

Unified Diff: gpu/command_buffer/client/gles2_c_lib_autogen.h

Issue 793693003: Tile Compression (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 | « gpu/command_buffer/build_gles2_cmd_buffer.py ('k') | gpu/command_buffer/client/gles2_cmd_helper_autogen.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/command_buffer/client/gles2_c_lib_autogen.h
diff --git a/gpu/command_buffer/client/gles2_c_lib_autogen.h b/gpu/command_buffer/client/gles2_c_lib_autogen.h
index 766ce560e6645bac1b683dfafa960d6542342730..6831cd6f32e5087a681424398fd90768f921773c 100644
--- a/gpu/command_buffer/client/gles2_c_lib_autogen.h
+++ b/gpu/command_buffer/client/gles2_c_lib_autogen.h
@@ -938,6 +938,14 @@ void GLES2CopyTextureCHROMIUM(GLenum target,
gles2::GetGLContext()->CopyTextureCHROMIUM(target, source_id, dest_id, level,
internalformat, dest_type);
}
+void GLES2CopyCompressedTextureCHROMIUM(GLenum target,
+ GLenum source_id,
+ GLenum dest_id,
+ GLenum internalformat,
+ GLenum dest_type) {
+ gles2::GetGLContext()->CopyCompressedTextureCHROMIUM(
+ target, source_id, dest_id, internalformat, dest_type);
+}
void GLES2DrawArraysInstancedANGLE(GLenum mode,
GLint first,
GLsizei count,
@@ -1042,6 +1050,29 @@ void GLES2AsyncTexImage2DCHROMIUM(GLenum target,
width, height, border, format,
type, pixels);
}
+void GLES2AsyncCompressedTexSubImage2DCHROMIUM(GLenum target,
+ GLint level,
+ GLint xoffset,
+ GLint yoffset,
+ GLsizei width,
+ GLsizei height,
+ GLenum format,
+ GLsizei imagesize,
+ const void* data) {
+ gles2::GetGLContext()->AsyncCompressedTexSubImage2DCHROMIUM(
+ target, level, xoffset, yoffset, width, height, format, imagesize, data);
+}
+void GLES2AsyncCompressedTexImage2DCHROMIUM(GLenum target,
+ GLint level,
+ GLint internalformat,
+ GLsizei width,
+ GLsizei height,
+ GLint border,
+ GLsizei imagesize,
+ const void* pixels) {
+ gles2::GetGLContext()->AsyncCompressedTexImage2DCHROMIUM(
+ target, level, internalformat, width, height, border, imagesize, pixels);
+}
void GLES2WaitAsyncTexImage2DCHROMIUM(GLenum target) {
gles2::GetGLContext()->WaitAsyncTexImage2DCHROMIUM(target);
}
@@ -1950,6 +1981,10 @@ extern const NameToFunc g_gles2_function_table[] = {
reinterpret_cast<GLES2FunctionPointer>(glCopyTextureCHROMIUM),
},
{
+ "glCopyCompressedTextureCHROMIUM",
+ reinterpret_cast<GLES2FunctionPointer>(glCopyCompressedTextureCHROMIUM),
+ },
+ {
"glDrawArraysInstancedANGLE",
reinterpret_cast<GLES2FunctionPointer>(glDrawArraysInstancedANGLE),
},
@@ -2038,6 +2073,16 @@ extern const NameToFunc g_gles2_function_table[] = {
reinterpret_cast<GLES2FunctionPointer>(glAsyncTexImage2DCHROMIUM),
},
{
+ "glAsyncCompressedTexSubImage2DCHROMIUM",
+ reinterpret_cast<GLES2FunctionPointer>(
+ glAsyncCompressedTexSubImage2DCHROMIUM),
+ },
+ {
+ "glAsyncCompressedTexImage2DCHROMIUM",
+ reinterpret_cast<GLES2FunctionPointer>(
+ glAsyncCompressedTexImage2DCHROMIUM),
+ },
+ {
"glWaitAsyncTexImage2DCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(glWaitAsyncTexImage2DCHROMIUM),
},
« no previous file with comments | « gpu/command_buffer/build_gles2_cmd_buffer.py ('k') | gpu/command_buffer/client/gles2_cmd_helper_autogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698