| Index: src/gpu/gl/GrGLAssembleInterface.cpp
|
| diff --git a/src/gpu/gl/GrGLAssembleInterface.cpp b/src/gpu/gl/GrGLAssembleInterface.cpp
|
| index c5c0785fe806807a562b89ceeb82794550cd5369..33d0b53cef6a230ecea5b90f0b69ad9264d104b0 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")) {
|
| @@ -162,6 +163,7 @@ const GrGLInterface* GrGLAssembleGLInterface(void* ctx, GrGLGetProc get) {
|
| GET_PROC_SUFFIX(TexStorage2D, EXT);
|
| }
|
| GET_PROC(TexSubImage2D);
|
| + GET_PROC(TexSubImage3D);
|
| GET_PROC(Uniform1f);
|
| GET_PROC(Uniform1i);
|
| GET_PROC(Uniform1fv);
|
| @@ -381,9 +383,11 @@ const GrGLInterface* GrGLAssembleGLESInterface(void* ctx, GrGLGetProc get) {
|
| GET_PROC(StencilOp);
|
| GET_PROC(StencilOpSeparate);
|
| GET_PROC(TexImage2D);
|
| + GET_PROC(TexImage3D);
|
| GET_PROC(TexParameteri);
|
| GET_PROC(TexParameteriv);
|
| GET_PROC(TexSubImage2D);
|
| + GET_PROC(TexSubImage3D);
|
|
|
| if (version >= GR_GL_VER(3,0)) {
|
| GET_PROC(TexStorage2D);
|
|
|