Commit 966baadf authored by gman@chromium.org's avatar gman@chromium.org

Add a few stubs so we can link the latest OpenGL ES 2.0 conformance tests

BUG=83382


Review URL: https://chromiumcodereview.appspot.com/10834073

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149090 0039d316-1c4b-4281-b951-d872f2087c98
parent 36d667a7
...@@ -20,6 +20,23 @@ void GTFNativeDestroyPixmap(EGLNativeDisplayType nativeDisplay, ...@@ -20,6 +20,23 @@ void GTFNativeDestroyPixmap(EGLNativeDisplayType nativeDisplay,
EGLNativePixmapType nativePixmap) { 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" } // extern "C"
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment