| 870 | } |
| 871 | |
| 872 | void gte::glClearColor(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) |
| 873 | { |
| 874 | ::glClearColor(red, green, blue, alpha); |
| 875 | ReportGLError("glClearColor"); |
| 876 | |
| 877 | #if defined(GTE_ENABLE_GLTRACE) |
| 878 | gsTrace.Call("glClearColor", "", |
| 879 | red, green, blue, alpha); |
| 880 | #endif |
| 881 | } |
| 882 | |
| 883 | void gte::glClearStencil(GLint s) |
| 884 | { |
nothing calls this directly
no test coverage detected