| 27 | { |
| 28 | |
| 29 | void error(int errnum, const char * errmsg) |
| 30 | { |
| 31 | std::cerr << errnum << ": " << errmsg << std::endl; |
| 32 | } |
| 33 | |
| 34 | static const std::array<GLfloat , 9> identity3{ { 1.f, 0.f, 0.f, 0.f, 1.f, 0.f, 0.f, 0.f, 1.f } }; |
| 35 | static const std::array<GLfloat , 16> identity4{ { 1.f, 0.f, 0.f, 0.f, 0.f, 1.f, 0.f, 0.f, 0.f, 0.f, 1.f, 0.f, 0.f, 0.f, 0.f, 1.f } }; |
nothing calls this directly
no outgoing calls
no test coverage detected