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

Unified Diff: gpu/command_buffer/build_gles2_cmd_buffer.py

Issue 643373003: Add support for all blendmodes if we have GL_KHR_blend_equation_advanced. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add missing test Created 6 years, 2 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
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 a6a6323e2f807c18f7a664ee203f08a3541185cc..f156f402abb3371e5a09b8db45b00c440de76c86 100755
--- a/gpu/command_buffer/build_gles2_cmd_buffer.py
+++ b/gpu/command_buffer/build_gles2_cmd_buffer.py
@@ -1553,6 +1553,12 @@ _FUNCTION_INFO = {
'type': 'StateSet',
'state': 'BlendFunc',
},
+ 'BlendBarrierNV': {
+ 'gl_test_func': 'glBlendBarrierNV',
piman 2014/10/16 20:13:29 At the command buffer level, I would prefer that w
Erik Dahlström (inactive) 2014/10/17 15:33:17 Agreed, will fix. Note that this also means I'll h
+ 'extension': True,
+ 'extension_flag': 'blend_equation_advanced',
+ 'client_test': False,
+ },
'SampleCoverage': {'decoder_func': 'DoSampleCoverage'},
'StencilFunc': {
'type': 'StateSetFrontBack',

Powered by Google App Engine
This is Rietveld 408576698