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

Unified Diff: ui/gl/generate_bindings.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: ui/gl/generate_bindings.py
diff --git a/ui/gl/generate_bindings.py b/ui/gl/generate_bindings.py
index bfc03a392a248a1a6804e221b58ae6669b067426..3ed5c52a243552feb61aeac5cdd1d08c97e2e540 100755
--- a/ui/gl/generate_bindings.py
+++ b/ui/gl/generate_bindings.py
@@ -868,6 +868,12 @@ GL_FUNCTIONS = [
'gl_versions': ['es3'],
'extensions': ['GL_NV_path_rendering'] }],
'arguments': 'GLenum matrixMode' },
+ { 'return_type': 'void',
+ 'known_as': 'glBlendBarrierNV',
+ 'versions': [{ 'name': 'glBlendBarrierNV',
+ 'gl_versions': ['gl4'],
+ 'extensions': ['GL_NV_blend_equation_advanced'] }],
piman 2014/10/16 20:13:29 If we enable the extension for either GL_NV_blend_
+ 'arguments': 'void' },
]
OSMESA_FUNCTIONS = [

Powered by Google App Engine
This is Rietveld 408576698