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

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: 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') | ppapi/tests/test_graphics_3d.cc » ('J')
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 a9e13bc2cde4075ee83139a89d5add42554ebb71..fc47a63757d3fd6d8ffb83485df027c45318931d 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': 'VertexArray', 'dev': False},
piman 2014/07/16 23:32:40 nit: mind calling it VertexArrayObject (which is c
Zachary Kuznia 2014/07/17 04:41:27 Done.
{'name': 'DrawBuffers', 'dev': True},
]
@@ -2428,6 +2429,7 @@ _FUNCTION_INFO = {
'resource_type': 'VertexArray',
'resource_types': 'VertexArrays',
'unit_test': False,
+ 'pepper_interface': 'VertexArray',
},
'BindVertexArrayOES': {
'type': 'Bind',
@@ -2437,6 +2439,7 @@ _FUNCTION_INFO = {
'gen_func': 'GenVertexArraysOES',
'unit_test': False,
'client_test': False,
+ 'pepper_interface': 'VertexArray',
},
'DeleteVertexArraysOES': {
'type': 'DELn',
@@ -2445,6 +2448,7 @@ _FUNCTION_INFO = {
'resource_type': 'VertexArray',
'resource_types': 'VertexArrays',
'unit_test': False,
+ 'pepper_interface': 'VertexArray',
},
'IsVertexArrayOES': {
'type': 'Is',
@@ -2453,6 +2457,7 @@ _FUNCTION_INFO = {
'decoder_func': 'DoIsVertexArrayOES',
'expectation': False,
'unit_test': False,
+ 'pepper_interface': 'VertexArray',
},
'BindTexImage2DCHROMIUM': {
'decoder_func': 'DoBindTexImage2DCHROMIUM',
« no previous file with comments | « no previous file | ppapi/c/ppb_opengles2.h » ('j') | ppapi/tests/test_graphics_3d.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698