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

Unified Diff: gpu/gles2_conform_support/native/egl_native.cc

Issue 10834073: Add a few stubs so we can link the latest OpenGL ES 2.0 conformance tests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/gles2_conform_support/native/egl_native.cc
diff --git a/gpu/gles2_conform_support/native/egl_native.cc b/gpu/gles2_conform_support/native/egl_native.cc
index 02a8ba40a1c9bb6da44a802d9fef615cbe1fc159..0a3e6d4b4dd5bab14fd020fd8e706f6d8e0dd16b 100644
--- a/gpu/gles2_conform_support/native/egl_native.cc
+++ b/gpu/gles2_conform_support/native/egl_native.cc
@@ -20,6 +20,23 @@ void GTFNativeDestroyPixmap(EGLNativeDisplayType nativeDisplay,
EGLNativePixmapType nativePixmap) {
}
+EGLImageKHR GTFCreateEGLImageExternal(
+ int width, int height, int format,
+ float r, float g, float b, float a, void** resource) {
+ return (EGLImageKHR)NULL;
+}
+
+void GTFDestroyEGLImageExternal(EGLImageKHR image, void* resource) {
+}
+
+const int* GTFQueryFormatsEGLImageExternal(void) {
+ return NULL;
+}
+
+GTFbool GTFIsAlphaFormatEGLImageExternal(int format) {
+ return GTFfalse;
+}
+
} // extern "C"
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698