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

Unified Diff: shell/native_application_support.cc

Issue 1319453003: Add KHR_blend_equation_advanced (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 4 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: shell/native_application_support.cc
diff --git a/shell/native_application_support.cc b/shell/native_application_support.cc
index 3b68ad0529360cf43e5804dcb5b5e334edbe4eb0..35b280e3442ea40d2b7121ac99dad0ecc6744103 100644
--- a/shell/native_application_support.cc
+++ b/shell/native_application_support.cc
@@ -15,6 +15,7 @@
#include "mojo/public/platform/native/gles2_impl_chromium_texture_mailbox_thunks.h"
#include "mojo/public/platform/native/gles2_impl_ext_debug_marker_thunks.h"
#include "mojo/public/platform/native/gles2_impl_ext_texture_storage_thunks.h"
+#include "mojo/public/platform/native/gles2_impl_khr_blend_equation_advanced_thunks.h"
#include "mojo/public/platform/native/gles2_impl_occlusion_query_ext_thunks.h"
#include "mojo/public/platform/native/gles2_impl_oes_vertex_array_object_thunks.h"
#include "mojo/public/platform/native/gles2_impl_thunks.h"
@@ -85,6 +86,8 @@ bool RunNativeApplication(
"MojoSetGLES2ImplEXTDebugMarkerThunks", app_library);
SetThunks(MojoMakeGLES2ImplEXTTextureStorageThunks,
"MojoSetGLES2ImplEXTTextureStorageThunks", app_library);
+ SetThunks(MojoMakeGLES2ImplKHRBlendEquationAdvancedThunks,
+ "MojoSetGLES2ImplKHRBlendEquationAdvancedThunks", app_library);
SetThunks(MojoMakeGLES2ImplOcclusionQueryEXTThunks,
"MojoSetGLES2ImplOcclusionQueryEXTThunks", app_library);
SetThunks(MojoMakeGLES2ImplOESVertexArrayObjectThunks,

Powered by Google App Engine
This is Rietveld 408576698