diff options
-rw-r--r-- | gpu/gles2_conform_support/native/egl_native.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gpu/gles2_conform_support/native/egl_native.cc b/gpu/gles2_conform_support/native/egl_native.cc index 0a3e6d4..bf8c771 100644 --- a/gpu/gles2_conform_support/native/egl_native.cc +++ b/gpu/gles2_conform_support/native/egl_native.cc @@ -23,14 +23,14 @@ void GTFNativeDestroyPixmap(EGLNativeDisplayType nativeDisplay, EGLImageKHR GTFCreateEGLImageExternal( int width, int height, int format, float r, float g, float b, float a, void** resource) { - return (EGLImageKHR)NULL; + return (EGLImageKHR)0; } void GTFDestroyEGLImageExternal(EGLImageKHR image, void* resource) { } const int* GTFQueryFormatsEGLImageExternal(void) { - return NULL; + return 0; } GTFbool GTFIsAlphaFormatEGLImageExternal(int format) { |