| 342 | } |
| 343 | |
| 344 | void OpenGLGuiHelper::changeTexture(int textureUniqueId, const unsigned char* rgbTexels, int width, int height) |
| 345 | { |
| 346 | bool flipPixelsY = true; |
| 347 | m_data->m_glApp->m_renderer->updateTexture(textureUniqueId, rgbTexels, flipPixelsY); |
| 348 | } |
| 349 | |
| 350 | int OpenGLGuiHelper::registerGraphicsShape(const float* vertices, int numvertices, const int* indices, int numIndices, int primitiveType, int textureId) |
| 351 | { |
no test coverage detected