| 11658 | } |
| 11659 | |
| 11660 | void APIENTRY glShaderStorageBlockBinding(GLuint program, GLuint storageBlockIndex, GLuint storageBlockBinding) |
| 11661 | { |
| 11662 | if (sglShaderStorageBlockBinding) |
| 11663 | { |
| 11664 | sglShaderStorageBlockBinding(program, storageBlockIndex, storageBlockBinding); |
| 11665 | ReportGLError("glShaderStorageBlockBinding"); |
| 11666 | } |
| 11667 | else |
| 11668 | { |
| 11669 | ReportGLNullFunction("glShaderStorageBlockBinding"); |
| 11670 | } |
| 11671 | |
| 11672 | #if defined(GTE_ENABLE_GLTRACE) |
| 11673 | gsTrace.Call("glShaderStorageBlockBinding", "", |
| 11674 | program, storageBlockIndex, storageBlockBinding); |
| 11675 | #endif |
| 11676 | } |
| 11677 | |
| 11678 | void APIENTRY glTexBufferRange(GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size) |
| 11679 | { |
no test coverage detected