| 11116 | } |
| 11117 | |
| 11118 | void APIENTRY glTexStorage3D(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth) |
| 11119 | { |
| 11120 | if (sglTexStorage3D) |
| 11121 | { |
| 11122 | sglTexStorage3D(target, levels, internalformat, width, height, depth); |
| 11123 | ReportGLError("glTexStorage3D"); |
| 11124 | } |
| 11125 | else |
| 11126 | { |
| 11127 | ReportGLNullFunction("glTexStorage3D"); |
| 11128 | } |
| 11129 | |
| 11130 | #if defined(GTE_ENABLE_GLTRACE) |
| 11131 | gsTrace.Call("glTexStorage3D", "", |
| 11132 | gsTrace.GetName(target), levels, gsTrace.GetName(internalformat), |
| 11133 | width, height, depth); |
| 11134 | #endif |
| 11135 | } |
| 11136 | |
| 11137 | void APIENTRY glDrawTransformFeedbackInstanced(GLenum mode, GLuint id, GLsizei instancecount) |
| 11138 | { |
no test coverage detected