| Index: src/gpu/gl/GrGLAssembleInterface.cpp
|
| diff --git a/src/gpu/gl/GrGLAssembleInterface.cpp b/src/gpu/gl/GrGLAssembleInterface.cpp
|
| index da88547f9bd738fd30af95077644d1577a023f97..19f79815089dcb93dba6114b1904a3829e0a9274 100644
|
| --- a/src/gpu/gl/GrGLAssembleInterface.cpp
|
| +++ b/src/gpu/gl/GrGLAssembleInterface.cpp
|
| @@ -154,6 +154,7 @@ const GrGLInterface* GrGLAssembleGLInterface(void* ctx, GrGLGetProc get) {
|
| GET_PROC(StencilOp);
|
| GET_PROC(StencilOpSeparate);
|
| GET_PROC(TexImage2D);
|
| + GET_PROC(TexImage3D);
|
| GET_PROC(TexParameteri);
|
| GET_PROC(TexParameteriv);
|
| if (glVer >= GR_GL_VER(4,2) || extensions.has("GL_ARB_texture_storage")) {
|
| @@ -383,6 +384,7 @@ const GrGLInterface* GrGLAssembleGLESInterface(void* ctx, GrGLGetProc get) {
|
| GET_PROC(TexParameteri);
|
| GET_PROC(TexParameteriv);
|
| GET_PROC(TexSubImage2D);
|
| + GET_PROC(TexSubImage3D);
|
|
|
| if (version >= GR_GL_VER(3,0)) {
|
| GET_PROC(TexStorage2D);
|
|
|