| 1646 | } |
| 1647 | |
| 1648 | void APIENTRY glClearColor(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) |
| 1649 | { |
| 1650 | if (sglClearColor) |
| 1651 | { |
| 1652 | sglClearColor(red, green, blue, alpha); |
| 1653 | ReportGLError("glClearColor"); |
| 1654 | } |
| 1655 | else |
| 1656 | { |
| 1657 | ReportGLNullFunction("glClearColor"); |
| 1658 | } |
| 1659 | } |
| 1660 | |
| 1661 | void APIENTRY glClearStencil(GLint s) |
| 1662 | { |
no test coverage detected