| 3909 | } |
| 3910 | |
| 3911 | GLboolean APIENTRY glIsProgram(GLuint program) |
| 3912 | { |
| 3913 | GLboolean result; |
| 3914 | if (sglIsProgram) |
| 3915 | { |
| 3916 | result = sglIsProgram(program); |
| 3917 | ReportGLError("glIsProgram"); |
| 3918 | } |
| 3919 | else |
| 3920 | { |
| 3921 | ReportGLNullFunction("glIsProgram"); |
| 3922 | result = 0; |
| 3923 | } |
| 3924 | |
| 3925 | #if defined(GTE_ENABLE_GLTRACE) |
| 3926 | gsTrace.Call("glIsProgram", gsTrace.GetBoolean(result), |
| 3927 | program); |
| 3928 | #endif |
| 3929 | return result; |
| 3930 | } |
| 3931 | |
| 3932 | GLboolean APIENTRY glIsShader(GLuint shader) |
| 3933 | { |
no test coverage detected