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

Unified Diff: gpu/command_buffer/build_gles2_cmd_buffer.py

Issue 397183002: Add PPAPI interface for OpenGL ES 2.0 Vertex Array Objects. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 5 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 | « no previous file | ppapi/c/ppb_opengles2.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/command_buffer/build_gles2_cmd_buffer.py
diff --git a/gpu/command_buffer/build_gles2_cmd_buffer.py b/gpu/command_buffer/build_gles2_cmd_buffer.py
index d74d64a455a897e9cbbe6be7b3c5b431bffa40a2..1216a7f45ae9e4c6f4f4034afa4eeb2e9583f050 100755
--- a/gpu/command_buffer/build_gles2_cmd_buffer.py
+++ b/gpu/command_buffer/build_gles2_cmd_buffer.py
@@ -1220,6 +1220,7 @@ _PEPPER_INTERFACES = [
{'name': 'ChromiumEnableFeature', 'dev': False},
{'name': 'ChromiumMapSub', 'dev': False},
{'name': 'Query', 'dev': False},
+ {'name': 'VertexArrayObject', 'dev': False},
{'name': 'DrawBuffers', 'dev': True},
]
@@ -2426,6 +2427,7 @@ _FUNCTION_INFO = {
'resource_type': 'VertexArray',
'resource_types': 'VertexArrays',
'unit_test': False,
+ 'pepper_interface': 'VertexArrayObject',
},
'BindVertexArrayOES': {
'type': 'Bind',
@@ -2435,6 +2437,7 @@ _FUNCTION_INFO = {
'gen_func': 'GenVertexArraysOES',
'unit_test': False,
'client_test': False,
+ 'pepper_interface': 'VertexArrayObject',
},
'DeleteVertexArraysOES': {
'type': 'DELn',
@@ -2443,6 +2446,7 @@ _FUNCTION_INFO = {
'resource_type': 'VertexArray',
'resource_types': 'VertexArrays',
'unit_test': False,
+ 'pepper_interface': 'VertexArrayObject',
},
'IsVertexArrayOES': {
'type': 'Is',
@@ -2451,6 +2455,7 @@ _FUNCTION_INFO = {
'decoder_func': 'DoIsVertexArrayOES',
'expectation': False,
'unit_test': False,
+ 'pepper_interface': 'VertexArrayObject',
},
'BindTexImage2DCHROMIUM': {
'decoder_func': 'DoBindTexImage2DCHROMIUM',
« no previous file with comments | « no previous file | ppapi/c/ppb_opengles2.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698