| 9427 | } |
| 9428 | |
| 9429 | GLuint APIENTRY glCreateShaderProgramv(GLenum type, GLsizei count, const GLchar* const* strings) |
| 9430 | { |
| 9431 | GLuint result; |
| 9432 | if (sglCreateShaderProgramv) |
| 9433 | { |
| 9434 | result = sglCreateShaderProgramv(type, count, strings); |
| 9435 | ReportGLError("glCreateShaderProgramv"); |
| 9436 | } |
| 9437 | else |
| 9438 | { |
| 9439 | ReportGLNullFunction("glCreateShaderProgramv"); |
| 9440 | result = 0; |
| 9441 | } |
| 9442 | |
| 9443 | #if defined(GTE_ENABLE_GLTRACE) |
| 9444 | gsTrace.Call("glCreateShaderProgramv", std::to_string(result), |
| 9445 | gsTrace.GetName(type), count, gsTrace.GetStringArray(count, strings)); |
| 9446 | #endif |
| 9447 | return result; |
| 9448 | } |
| 9449 | |
| 9450 | void APIENTRY glBindProgramPipeline(GLuint pipeline) |
| 9451 | { |
nothing calls this directly
no test coverage detected