| Index: src/gpu/gl/GrGLGpu.cpp
 | 
| diff --git a/src/gpu/gl/GrGLGpu.cpp b/src/gpu/gl/GrGLGpu.cpp
 | 
| index 7320d2e30eeeb0b8d1bf04aa1e930547977ca2e5..5c03ab57d28a1b52cf0bb7463d7c2498ba8de64c 100644
 | 
| --- a/src/gpu/gl/GrGLGpu.cpp
 | 
| +++ b/src/gpu/gl/GrGLGpu.cpp
 | 
| @@ -3067,7 +3067,7 @@ void GrGLGpu::didRemoveGpuTraceMarker() {
 | 
|      }
 | 
|  }
 | 
|  
 | 
| -GrBackendObject GrGLGpu::createBackendTexture(void* pixels, int w, int h,
 | 
| +GrBackendObject GrGLGpu::createTestingOnlyBackendTexture(void* pixels, int w, int h,
 | 
|                                                GrPixelConfig config) const {
 | 
|      GrGLuint texID;
 | 
|      GL_CALL(GenTextures(1, &texID));
 | 
| @@ -3091,7 +3091,7 @@ GrBackendObject GrGLGpu::createBackendTexture(void* pixels, int w, int h,
 | 
|      return texID;
 | 
|  }
 | 
|  
 | 
| -bool GrGLGpu::isBackendTexture(GrBackendObject id) const {
 | 
| +bool GrGLGpu::isTestingOnlyBackendTexture(GrBackendObject id) const {
 | 
|      GrGLuint texID = (GrGLuint)id;
 | 
|  
 | 
|      GrGLboolean result;
 | 
| @@ -3100,7 +3100,7 @@ bool GrGLGpu::isBackendTexture(GrBackendObject id) const {
 | 
|      return (GR_GL_TRUE == result);
 | 
|  }
 | 
|  
 | 
| -void GrGLGpu::deleteBackendTexture(GrBackendObject id) const {
 | 
| +void GrGLGpu::deleteTestingOnlyBackendTexture(GrBackendObject id) const {
 | 
|      GrGLuint texID = (GrGLuint)id;
 | 
|      GL_CALL(DeleteTextures(1, &texID));
 | 
|  }
 | 
| 
 |