TDME2 1.9.121
GLES2Renderer.cpp
Go to the documentation of this file.
2
3#define GL_GLEXT_PROTOTYPES
4#include <GLES2/gl2.h>
5
6#include <string.h>
7
8#include <array>
9#include <map>
10#include <string>
11#include <vector>
12
13#include <tdme/tdme.h>
15#include <tdme/engine/Engine.h>
17#include <tdme/math/Matrix4x4.h>
27#include <tdme/utilities/Time.h>
28
29using std::array;
30using std::map;
31using std::string;
32using std::to_string;
33using std::vector;
34
36
51
52GLES2Renderer::GLES2Renderer()
53{
55 // setup GLES2 consts
56 ID_NONE = 0;
57 CLEAR_DEPTH_BUFFER_BIT = GL_DEPTH_BUFFER_BIT;
58 CLEAR_COLOR_BUFFER_BIT = GL_COLOR_BUFFER_BIT;
59 CULLFACE_FRONT = GL_FRONT;
60 CULLFACE_BACK = GL_BACK;
61 FRONTFACE_CW = GL_CW;
62 FRONTFACE_CCW = GL_CCW;
63 SHADER_FRAGMENT_SHADER = GL_FRAGMENT_SHADER;
64 SHADER_VERTEX_SHADER = GL_VERTEX_SHADER;
66 DEPTHFUNCTION_ALWAYS = GL_ALWAYS;
67 DEPTHFUNCTION_EQUAL = GL_EQUAL;
68 DEPTHFUNCTION_LESSEQUAL = GL_LEQUAL;
70 CUBEMAPTEXTUREINDEX_NEGATIVE_X = GL_TEXTURE_CUBE_MAP_NEGATIVE_X;
71 CUBEMAPTEXTUREINDEX_POSITIVE_X = GL_TEXTURE_CUBE_MAP_POSITIVE_X;
72 CUBEMAPTEXTUREINDEX_POSITIVE_Y = GL_TEXTURE_CUBE_MAP_POSITIVE_Y;
73 CUBEMAPTEXTUREINDEX_NEGATIVE_Y = GL_TEXTURE_CUBE_MAP_NEGATIVE_Y;
74 CUBEMAPTEXTUREINDEX_POSITIVE_Z = GL_TEXTURE_CUBE_MAP_POSITIVE_Z;
75 CUBEMAPTEXTUREINDEX_NEGATIVE_Z = GL_TEXTURE_CUBE_MAP_NEGATIVE_Z;
77}
78
80 auto vendor = (char*)glGetString(GL_VENDOR);
81 return string(vendor);
82}
83
85 auto renderer = (char*)glGetString(GL_RENDERER);
86 return string(renderer) + " [GLES2]";
87}
88
90{
91 return "gl2";
92}
93
95 return false;
96}
97
99{
100 glGetError();
101 // get default framebuffer
102 FRAMEBUFFER_DEFAULT = 0; // getContext()->getDefaultDrawFramebuffer();
103 checkGLError();
104 // setup open gl
105 glClearColor(0.0f, 0.0f, 0.0f, 1.0f);
106 glClearDepthf(1.0f);
107 glEnable(GL_DEPTH_TEST);
108 glEnable(GL_CULL_FACE);
109 glDepthFunc(GL_LEQUAL);
110 glBlendEquation(GL_FUNC_ADD);
111 glDisable(GL_BLEND);
112 // renderer contexts
113 rendererContexts.resize(1);
114 for (auto& rendererContext: rendererContexts) {
115 for (auto i = 0; i < rendererContext.lights.size(); i++) {
116 rendererContext.lights[i].spotCosCutoff = static_cast<float>(Math::cos(Math::PI / 180.0f * 180.0f));
117 }
118 rendererContext.textureMatrix.identity();
119 }
120}
121
123{
124}
125
127{
128}
129
131{
132 return true;
133}
134
136{
137 // return glGetString(GL::GL_EXTENSIONS)->indexOf(u"GL_OES_depth_texture"_j) != -1;
138 return true;
139}
140
142{
143 return true;
144}
145
147 return false;
148}
149
150
152{
153 return false;
154}
155
157{
158 return false;
159}
160
162 return false;
163}
164
166{
167 return false;
168}
169
171 return false;
172}
173
175 return false;
176}
177
179 return true;
180}
181
183 return false;
184}
185
187{
188 return -1;
189}
190
191int32_t GLES2Renderer::loadShader(int32_t type, const string& pathName, const string& fileName, const string& definitions, const string& functions)
192{
193 // create shader
194 int32_t handle = glCreateShader(type);
195 // exit if no handle returned
196 if (handle == 0) return 0;
197 // shader source
198 auto shaderSource = StringTools::replace(
199 StringTools::replace(
200 FileSystem::getInstance()->getContentAsString(pathName, fileName),
201 "{$DEFINITIONS}",
202 definitions + "\n\n"
203 ),
204 "{$FUNCTIONS}",
205 functions + "\n\n"
206 );
207 string sourceString = (shaderSource);
208 char *sourceHeap = new char[sourceString.length() + 1];
209 strcpy(sourceHeap, sourceString.c_str());
210 // load source
211 glShaderSource(handle, 1, &sourceHeap, nullptr);
212 // compile
213 glCompileShader(handle);
214 // check state
215 int32_t compileStatus;
216 glGetShaderiv(handle, GL_COMPILE_STATUS, &compileStatus);
217 if (compileStatus == 0) {
218 // get error
219 int32_t infoLogLengthBuffer;
220 glGetShaderiv(handle, GL_INFO_LOG_LENGTH, &infoLogLengthBuffer);
221 char infoLogBuffer[infoLogLengthBuffer];
222 glGetShaderInfoLog(handle, infoLogLengthBuffer, &infoLogLengthBuffer, infoLogBuffer);
223 auto infoLogString = (string(infoLogBuffer, infoLogLengthBuffer));
224 // be verbose
225 Console::println(
226 string(
227 string("GLES2Renderer::loadShader") +
228 string("[") +
229 to_string(handle) +
230 string("]") +
231 pathName +
232 string("/") +
233 fileName +
234 string(": failed: ") +
235 infoLogString
236 )
237 );
238 // remove shader
239 glDeleteShader(handle);
240 return 0;
241 }
242
243 return handle;
244}
245
246void GLES2Renderer::useProgram(int contextIdx, int32_t programId)
247{
248 glUseProgram(programId);
249}
250
252{
253 auto program = glCreateProgram();
254 return program;
255}
256
257void GLES2Renderer::attachShaderToProgram(int32_t programId, int32_t shaderId)
258{
259 glAttachShader(programId, shaderId);
260}
261
262bool GLES2Renderer::linkProgram(int32_t programId)
263{
264 glLinkProgram(programId);
265 // check state
266 int32_t linkStatus;
267 glGetProgramiv(programId, GL_LINK_STATUS, &linkStatus);
268 if (linkStatus == 0) {
269 // get error
270 int32_t infoLogLength = 0;
271 glGetProgramiv(programId, GL_INFO_LOG_LENGTH, &infoLogLength);
272 char infoLog[infoLogLength];
273 glGetProgramInfoLog(programId, infoLogLength, &infoLogLength, infoLog);
274 auto infoLogString = (string(infoLog, infoLogLength));
275 // be verbose
276 Console::println(
277 string(
278 "[" +
279 to_string(programId) +
280 "]: failed: " +
281 infoLogString
282 )
283 );
284 return false;
285 }
286 return true;
287}
288
289int32_t GLES2Renderer::getProgramUniformLocation(int32_t programId, const string& name)
290{
291 auto uniformLocation = glGetUniformLocation(programId, name.c_str());
292 // if (uniformLocation == -1) Console::println("GLES2Renderer::getProgramUniformLocation(): " + to_string(programId) + ": " + name + ": not found");
293 return uniformLocation;
294}
295
296void GLES2Renderer::setProgramUniformInteger(int contextIdx, int32_t uniformId, int32_t value)
297{
298 glUniform1i(uniformId, value);
299}
300
301void GLES2Renderer::setProgramUniformFloat(int contextIdx, int32_t uniformId, float value)
302{
303 glUniform1f(uniformId, value);
304}
305
306void GLES2Renderer::setProgramUniformFloatMatrix3x3(int contextIdx, int32_t uniformId, const array<float, 9>& data)
307{
308 glUniformMatrix3fv(uniformId, 1, false, data.data());
309}
310
311void GLES2Renderer::setProgramUniformFloatMatrix4x4(int contextIdx, int32_t uniformId, const array<float, 16>& data)
312{
313 glUniformMatrix4fv(uniformId, 1, false, data.data());
314}
315
316void GLES2Renderer::setProgramUniformFloatMatrices4x4(int contextIdx, int32_t uniformId, int32_t count, FloatBuffer* data)
317{
318 glUniformMatrix4fv(uniformId, count, false, (float*)data->getBuffer());
319}
320
321void GLES2Renderer::setProgramUniformFloatVec4(int contextIdx, int32_t uniformId, const array<float, 4>& data)
322{
323 glUniform4fv(uniformId, 1, data.data());
324}
325
326void GLES2Renderer::setProgramUniformFloatVec3(int contextIdx, int32_t uniformId, const array<float, 3>& data)
327{
328 glUniform3fv(uniformId, 1, data.data());
329}
330
331void GLES2Renderer::setProgramUniformFloatVec2(int contextIdx, int32_t uniformId, const array<float, 2>& data)
332{
333 glUniform2fv(uniformId, 1, data.data());
334}
335
336void GLES2Renderer::setProgramAttributeLocation(int32_t programId, int32_t location, const string& name)
337{
338 glBindAttribLocation(programId, location, (name).c_str());
339}
340
341void GLES2Renderer::setViewPort(int32_t width, int32_t height)
342{
343 this->viewPortWidth = width;
344 this->viewPortHeight = height;
345}
346
348{
349 glViewport(0, 0, viewPortWidth, viewPortHeight);
350}
351
352void GLES2Renderer::setClearColor(float red, float green, float blue, float alpha)
353{
354 glClearColor(red, green, blue, alpha);
355}
356
358{
359 glEnable(GL_CULL_FACE);
360}
361
363{
364 glDisable(GL_CULL_FACE);
365}
366
367void GLES2Renderer::setFrontFace(int contextIdx, int32_t frontFace)
368{
369 glFrontFace(frontFace);
370}
371
372void GLES2Renderer::setCullFace(int32_t cullFace)
373{
374 glCullFace(cullFace);
375}
376
378{
379 glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
380 glEnable(GL_BLEND);
381}
382
384 glBlendFunc(GL_ONE, GL_ONE);
385 glEnable(GL_BLEND);
386}
387
389{
390 glDisable(GL_BLEND);
391}
392
394{
395 glDepthMask(true);
396}
397
399{
400 glDepthMask(false);
401}
402
404{
405 glDisable(GL_DEPTH_TEST);
406}
407
409{
410 glEnable(GL_DEPTH_TEST);
411}
412
413
414void GLES2Renderer::setDepthFunction(int32_t depthFunction)
415{
416 glDepthFunc(depthFunction);
417}
418
419void GLES2Renderer::setColorMask(bool red, bool green, bool blue, bool alpha)
420{
421 glColorMask(red, green, blue, alpha);
422}
423
424void GLES2Renderer::clear(int32_t mask)
425{
426 glClear(mask);
428}
429
431{
432 uint32_t textureId;
433 glGenTextures(1, &textureId);
434 return textureId;
435}
436
437int32_t GLES2Renderer::createDepthBufferTexture(int32_t width, int32_t height, int32_t cubeMapTextureId, int32_t cubeMapTextureIndex)
438{
439 uint32_t depthTextureId;
440 // create depth texture
441 glGenTextures(1, &depthTextureId);
442 glBindTexture(GL_TEXTURE_2D, depthTextureId);
443 // create depth texture
444 glTexImage2D(GL_TEXTURE_2D, 0, GL_DEPTH_COMPONENT, width, height, 0, GL_DEPTH_COMPONENT, GL_UNSIGNED_INT, nullptr);
445 // depth texture parameter
446 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
447 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
448 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
449 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
450 // unbind, return
451 glBindTexture(GL_TEXTURE_2D, ID_NONE);
452 return depthTextureId;
453}
454
455int32_t GLES2Renderer::createColorBufferTexture(int32_t width, int32_t height, int32_t cubeMapTextureId, int32_t cubeMapTextureIndex)
456{
457 uint32_t colorBufferTextureId;
458 // create color texture
459 glGenTextures(1, &colorBufferTextureId);
460 glBindTexture(GL_TEXTURE_2D, colorBufferTextureId);
461 // create color texture
462 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, nullptr);
463 // color texture parameter
464 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
465 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
466 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
467 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
468 // unbind, return
469 glBindTexture(GL_TEXTURE_2D, ID_NONE);
470 return colorBufferTextureId;
471}
472
473int32_t GLES2Renderer::createGBufferGeometryTexture(int32_t width, int32_t height) {
474 Console::println("GLES2Renderer::createGBufferGeometryTexture(): Not implemented");
475 return ID_NONE;
476}
477
478int32_t GLES2Renderer::createGBufferColorTexture(int32_t width, int32_t height) {
479 Console::println("GLES2Renderer::createGBufferColorTexture(): Not implemented");
480 return ID_NONE;
481}
482
483void GLES2Renderer::uploadTexture(int contextIdx, Texture* texture)
484{
485 glTexImage2D(
486 GL_TEXTURE_2D,
487 0,
488 texture->getDepth() == 32?GL_RGBA:GL_RGB,
489 texture->getTextureWidth(),
490 texture->getTextureHeight(),
491 0,
492 texture->getDepth() == 32?GL_RGBA:GL_RGB,
493 GL_UNSIGNED_BYTE,
494 texture->getTextureData()->getBuffer()
495 );
496 if (texture->getAtlasSize() > 1) {
497 if (texture->isUseMipMap() == true) {
498 glGenerateMipmap(GL_TEXTURE_2D);
499 }
500 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
501 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
502 } else {
503 if (texture->isUseMipMap() == true) glGenerateMipmap(GL_TEXTURE_2D);
504 if (texture->isRepeat() == true) {
505 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
506 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
507 } else {
508 // TODO: this feature does not seem to exist with GLES2
509 /*
510 float color[4] = {0.0f, 0.0f, 0.0f, 0.0f};
511 if (texture->getClampMode() == Texture::CLAMPMODE_TRANSPARENTPIXEL) glTexParameterfv(GL_TEXTURE_2D, GL_TEXTURE_BORDER_COLOR, color);
512 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, texture->getClampMode() == Texture::CLAMPMODE_EDGE?GL_CLAMP_TO_EDGE:GL_CLAMP_TO_BORDER);
513 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, texture->getClampMode() == Texture::CLAMPMODE_EDGE?GL_CLAMP_TO_EDGE:GL_CLAMP_TO_BORDER);
514 */
515 }
516 }
517 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, texture->isUseMipMap() == true?GL_LINEAR_MIPMAP_LINEAR:GL_LINEAR);
518 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
520}
521
522void GLES2Renderer::uploadCubeMapTexture(int contextIdx, Texture* textureLeft, Texture* textureRight, Texture* textureTop, Texture* textureBottom, Texture* textureFront, Texture* textureBack) {
523 glTexImage2D(
524 GL_TEXTURE_CUBE_MAP_NEGATIVE_X,
525 0,
526 textureLeft->getDepth() == 32?GL_RGBA:GL_RGB,
527 textureLeft->getTextureWidth(),
528 textureLeft->getTextureHeight(),
529 0,
530 textureLeft->getDepth() == 32?GL_RGBA:GL_RGB,
531 GL_UNSIGNED_BYTE,
532 textureLeft->getTextureData()->getBuffer()
533 );
534 glTexImage2D(
535 GL_TEXTURE_CUBE_MAP_POSITIVE_X,
536 0,
537 textureRight->getDepth() == 32?GL_RGBA:GL_RGB,
538 textureRight->getTextureWidth(),
539 textureRight->getTextureHeight(),
540 0,
541 textureRight->getDepth() == 32?GL_RGBA:GL_RGB,
542 GL_UNSIGNED_BYTE,
543 textureRight->getTextureData()->getBuffer()
544 );
545 glTexImage2D(
546 GL_TEXTURE_CUBE_MAP_POSITIVE_Y,
547 0,
548 textureTop->getDepth() == 32?GL_RGBA:GL_RGB,
549 textureTop->getTextureWidth(),
550 textureTop->getTextureHeight(),
551 0,
552 textureTop->getDepth() == 32?GL_RGBA:GL_RGB,
553 GL_UNSIGNED_BYTE,
554 textureTop->getTextureData()->getBuffer()
555 );
556 glTexImage2D(
557 GL_TEXTURE_CUBE_MAP_NEGATIVE_Y,
558 0,
559 textureBottom->getDepth() == 32?GL_RGBA:GL_RGB,
560 textureBottom->getTextureWidth(),
561 textureBottom->getTextureHeight(),
562 0,
563 textureBottom->getDepth() == 32?GL_RGBA:GL_RGB,
564 GL_UNSIGNED_BYTE,
565 textureBottom->getTextureData()->getBuffer()
566 );
567 glTexImage2D(
568 GL_TEXTURE_CUBE_MAP_POSITIVE_Z,
569 0,
570 textureFront->getDepth() == 32?GL_RGBA:GL_RGB,
571 textureFront->getTextureWidth(),
572 textureFront->getTextureHeight(),
573 0,
574 textureFront->getDepth() == 32?GL_RGBA:GL_RGB,
575 GL_UNSIGNED_BYTE,
576 textureFront->getTextureData()->getBuffer()
577 );
578 glTexImage2D(
579 GL_TEXTURE_CUBE_MAP_NEGATIVE_Z,
580 0,
581 textureBack->getDepth() == 32?GL_RGBA:GL_RGB,
582 textureBack->getTextureWidth(),
583 textureBack->getTextureHeight(),
584 0,
585 textureBack->getDepth() == 32?GL_RGBA:GL_RGB,
586 GL_UNSIGNED_BYTE,
587 textureBack->getTextureData()->getBuffer()
588 );
589 glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
590 glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
591 glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
592 glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
594}
595
596int32_t GLES2Renderer::createCubeMapTexture(int contextIdx, int32_t width, int32_t height) {
597 // generate open gl texture
598 uint32_t textureId;
599 glGenTextures(1, &textureId);
600 glBindTexture(GL_TEXTURE_CUBE_MAP, textureId);
601 glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
602 glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
603 glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
604 glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
605 glTexImage2D(
606 GL_TEXTURE_CUBE_MAP_NEGATIVE_X,
607 0,
608 GL_RGBA,
609 width,
610 height,
611 0,
612 GL_RGBA,
613 GL_UNSIGNED_BYTE,
614 nullptr
615 );
616 glTexImage2D(
617 GL_TEXTURE_CUBE_MAP_POSITIVE_X,
618 0,
619 GL_RGBA,
620 width,
621 height,
622 0,
623 GL_RGBA,
624 GL_UNSIGNED_BYTE,
625 nullptr
626 );
627 glTexImage2D(
628 GL_TEXTURE_CUBE_MAP_POSITIVE_Y,
629 0,
630 GL_RGBA,
631 width,
632 height,
633 0,
634 GL_RGBA,
635 GL_UNSIGNED_BYTE,
636 nullptr
637 );
638 glTexImage2D(
639 GL_TEXTURE_CUBE_MAP_NEGATIVE_Y,
640 0,
641 GL_RGBA,
642 width,
643 height,
644 0,
645 GL_RGBA,
646 GL_UNSIGNED_BYTE,
647 nullptr
648 );
649 glTexImage2D(
650 GL_TEXTURE_CUBE_MAP_POSITIVE_Z,
651 0,
652 GL_RGBA,
653 width,
654 height,
655 0,
656 GL_RGBA,
657 GL_UNSIGNED_BYTE,
658 nullptr
659 );
660 glTexImage2D(
661 GL_TEXTURE_CUBE_MAP_NEGATIVE_Z,
662 0,
663 GL_RGBA,
664 width,
665 height,
666 0,
667 GL_RGBA,
668 GL_UNSIGNED_BYTE,
669 nullptr
670 );
671 glBindTexture(GL_TEXTURE_CUBE_MAP, 0);
672 return textureId;
673}
674
675void GLES2Renderer::resizeDepthBufferTexture(int32_t textureId, int32_t width, int32_t height)
676{
677 glBindTexture(GL_TEXTURE_2D, textureId);
678 glTexImage2D(GL_TEXTURE_2D, 0, GL_DEPTH_COMPONENT, width, height, 0, GL_DEPTH_COMPONENT, GL_UNSIGNED_INT, nullptr);
679 glBindTexture(GL_TEXTURE_2D, 0);
680}
681
682void GLES2Renderer::resizeColorBufferTexture(int32_t textureId, int32_t width, int32_t height)
683{
684 glBindTexture(GL_TEXTURE_2D, textureId);
685 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, nullptr);
686 glBindTexture(GL_TEXTURE_2D, 0);
687}
688
689void GLES2Renderer::resizeGBufferGeometryTexture(int32_t textureId, int32_t width, int32_t height) {
690 Console::println("GLES2Renderer::resizeGBufferGeometryTexture(): Not implemented");
691}
692
693void GLES2Renderer::resizeGBufferColorTexture(int32_t textureId, int32_t width, int32_t height) {
694 Console::println("GLES2Renderer::resizeGBufferColorTexture(): Not implemented");
695}
696
697void GLES2Renderer::bindTexture(int contextIdx, int32_t textureId)
698{
699 glBindTexture(GL_TEXTURE_2D, textureId);
700 onBindTexture(contextIdx, textureId);
701}
702
703void GLES2Renderer::bindCubeMapTexture(int contextIdx, int32_t textureId) {
704 glBindTexture(GL_TEXTURE_CUBE_MAP, textureId);
705 onBindTexture(contextIdx, textureId);
706}
707
708void GLES2Renderer::disposeTexture(int32_t textureId)
709{
710 glDeleteTextures(1, (const uint32_t*)&textureId);
712}
713
714int32_t GLES2Renderer::createFramebufferObject(int32_t depthBufferTextureId, int32_t colorBufferTextureId, int32_t cubeMapTextureId, int32_t cubeMapTextureIndex)
715{
716 uint32_t frameBufferId;
717 // create a frame buffer object
718 glGenFramebuffers(1, &frameBufferId);
719 glBindFramebuffer(GL_FRAMEBUFFER, frameBufferId);
720 // attach the depth buffer texture to FBO
721 if (depthBufferTextureId != ID_NONE) {
722 glFramebufferTexture2D(GL_FRAMEBUFFER, GL_DEPTH_ATTACHMENT, GL_TEXTURE_2D, depthBufferTextureId, 0);
723 }
724 // attach the depth buffer texture to FBO
725 if (colorBufferTextureId != ID_NONE) {
726 glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, colorBufferTextureId, 0);
727 // glDrawBuffer(GL_COLOR_ATTACHMENT0);
728 // glReadBuffer(GL_COLOR_ATTACHMENT0);
729 } else
730 if (cubeMapTextureId != ID_NONE) {
731 glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, cubeMapTextureIndex, cubeMapTextureId, 0);
732 } else {
733 // glDrawBuffer(GL_NONE);
734 // glReadBuffer(GL_NONE);
735 }
736 // check FBO status
737 auto fboStatus = glCheckFramebufferStatus(GL_FRAMEBUFFER);
738 if (fboStatus != GL_FRAMEBUFFER_COMPLETE) {
739 Console::println(string("GL_FRAMEBUFFER_COMPLETE_EXT failed, CANNOT use FBO: "+ to_string(fboStatus)));
740 }
741 // switch back to window-system-provided framebuffer
742 glBindFramebuffer(GL_FRAMEBUFFER, 0);
743 return frameBufferId;
744}
745
747 int32_t depthBufferTextureId,
748 int32_t geometryBufferTextureId1,
749 int32_t geometryBufferTextureId2,
750 int32_t geometryBufferTextureId3,
751 int32_t colorBufferTextureId1,
752 int32_t colorBufferTextureId2,
753 int32_t colorBufferTextureId3,
754 int32_t colorBufferTextureId4,
755 int32_t colorBufferTextureId5
756) {
757 Console::println(string("GLES2Renderer::createGeometryBufferObject()::not implemented yet"));
758 return ID_NONE;
759}
760
761void GLES2Renderer::bindFrameBuffer(int32_t frameBufferId)
762{
763 glBindFramebuffer(GL_FRAMEBUFFER, frameBufferId);
764}
765
767{
768 glDeleteFramebuffers(1, (const uint32_t*)&frameBufferId);
769}
770
771vector<int32_t> GLES2Renderer::createBufferObjects(int32_t buffers, bool useGPUMemory, bool shared)
772{
773 vector<int32_t> bufferObjectIds;
774 bufferObjectIds.resize(buffers);
775 glGenBuffers(buffers, (uint32_t*)bufferObjectIds.data());
776 for (auto bufferObjectId: bufferObjectIds) vbosUsage[bufferObjectId] = useGPUMemory == true?GL_STATIC_DRAW:GL_STREAM_DRAW;
777 return bufferObjectIds;
778}
779
780void GLES2Renderer::uploadBufferObject(int contextIdx, int32_t bufferObjectId, int32_t size, FloatBuffer* data)
781{
782 glBindBuffer(GL_ARRAY_BUFFER, bufferObjectId);
783 glBufferData(GL_ARRAY_BUFFER, size, data->getBuffer(), vbosUsage[bufferObjectId]);
784 glBindBuffer(GL_ARRAY_BUFFER, ID_NONE);
786}
787
788void GLES2Renderer::uploadBufferObject(int contextIdx, int32_t bufferObjectId, int32_t size, ShortBuffer* data)
789{
790 glBindBuffer(GL_ARRAY_BUFFER, bufferObjectId);
791 glBufferData(GL_ARRAY_BUFFER, size, data->getBuffer(), vbosUsage[bufferObjectId]);
792 glBindBuffer(GL_ARRAY_BUFFER, ID_NONE);
794}
795
796void GLES2Renderer::uploadBufferObject(int contextIdx, int32_t bufferObjectId, int32_t size, IntBuffer* data)
797{
798 glBindBuffer(GL_ARRAY_BUFFER, bufferObjectId);
799 glBufferData(GL_ARRAY_BUFFER, size, data->getBuffer(), vbosUsage[bufferObjectId]);
800 glBindBuffer(GL_ARRAY_BUFFER, ID_NONE);
802}
803
804void GLES2Renderer::uploadIndicesBufferObject(int contextIdx, int32_t bufferObjectId, int32_t size, ShortBuffer* data)
805{
806 glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, bufferObjectId);
807 glBufferData(GL_ELEMENT_ARRAY_BUFFER, size, data->getBuffer(), vbosUsage[bufferObjectId]);
808 glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, ID_NONE);
810}
811
812void GLES2Renderer::uploadIndicesBufferObject(int contextIdx, int32_t bufferObjectId, int32_t size, IntBuffer* data)
813{
814 Console::println("GLES2Renderer::uploadIndicesBufferObject()::not implemented");
815}
816
817void GLES2Renderer::bindIndicesBufferObject(int contextIdx, int32_t bufferObjectId)
818{
819 glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, bufferObjectId);
820}
821
822void GLES2Renderer::bindTextureCoordinatesBufferObject(int contextIdx, int32_t bufferObjectId)
823{
824 glBindBuffer(GL_ARRAY_BUFFER, bufferObjectId);
825 glEnableVertexAttribArray(2);
826 glVertexAttribPointer(2, 2, GL_FLOAT, false, 0, 0LL);
827}
828
829void GLES2Renderer::bindVerticesBufferObject(int contextIdx, int32_t bufferObjectId)
830{
831 glBindBuffer(GL_ARRAY_BUFFER, bufferObjectId);
832 glEnableVertexAttribArray(0);
833 glVertexAttribPointer(0, 3, GL_FLOAT, false, 0, 0LL);
834}
835
836void GLES2Renderer::bindNormalsBufferObject(int contextIdx, int32_t bufferObjectId)
837{
838 glBindBuffer(GL_ARRAY_BUFFER, bufferObjectId);
839 glEnableVertexAttribArray(1);
840 glVertexAttribPointer(1, 3, GL_FLOAT, false, 0, 0LL);
841}
842
843void GLES2Renderer::bindColorsBufferObject(int contextIdx, int32_t bufferObjectId)
844{
845 glBindBuffer(GL_ARRAY_BUFFER, bufferObjectId);
846 glEnableVertexAttribArray(3);
847 glVertexAttribPointer(3, 4, GL_FLOAT, false, 0, 0LL);
848}
849
850void GLES2Renderer::bindTangentsBufferObject(int contextIdx, int32_t bufferObjectId)
851{
852 Console::println("GLES2Renderer::bindTangentsBufferObject()::not implemented");
853}
854
855void GLES2Renderer::bindBitangentsBufferObject(int contextIdx, int32_t bufferObjectId)
856{
857 Console::println("GLES2Renderer::bindBitangentsBufferObject()::not implemented");
858}
859
860void GLES2Renderer::bindModelMatricesBufferObject(int contextIdx, int32_t bufferObjectId) {
861 Console::println(string("GLES2Renderer::bindModelViewMatricesBufferObject()::not implemented yet"));
862}
863
864void GLES2Renderer::bindEffectColorMulsBufferObject(int contextIdx, int32_t bufferObjectId, int32_t divisor) {
865 glBindBuffer(GL_ARRAY_BUFFER, bufferObjectId);
866 glEnableVertexAttribArray(10);
867 glVertexAttribPointer(10, 4, GL_FLOAT, false, 0, 0LL);
868}
869
870void GLES2Renderer::bindEffectColorAddsBufferObject(int contextIdx, int32_t bufferObjectId, int32_t divisor) {
871 glBindBuffer(GL_ARRAY_BUFFER, bufferObjectId);
872 glEnableVertexAttribArray(11);
873 glVertexAttribPointer(11, 4, GL_FLOAT, false, 0, 0LL);
874}
875
876void GLES2Renderer::bindOriginsBufferObject(int contextIdx, int32_t bufferObjectId) {
877 glBindBuffer(GL_ARRAY_BUFFER, bufferObjectId);
878 glEnableVertexAttribArray(4);
879 glVertexAttribPointer(4, 3, GL_FLOAT, false, 0, 0LL);
880}
881
882void GLES2Renderer::bindTextureSpriteIndicesBufferObject(int contextIdx, int32_t bufferObjectId) {
883 glBindBuffer(GL_ARRAY_BUFFER, bufferObjectId);
884 glEnableVertexAttribArray(1);
885 glVertexAttribPointer(1, 2, GL_FLOAT, false, 0, 0LL);
886}
887
888void GLES2Renderer::bindPointSizesBufferObject(int contextIdx, int32_t bufferObjectId) {
889 glBindBuffer(GL_ARRAY_BUFFER, bufferObjectId);
890 glEnableVertexAttribArray(5);
891 glVertexAttribPointer(5, 1, GL_FLOAT, false, 0, 0LL);
892}
893
894void GLES2Renderer::bindSpriteSheetDimensionBufferObject(int contextIdx, int32_t bufferObjectId) {
895 glBindBuffer(GL_ARRAY_BUFFER, bufferObjectId);
896 glEnableVertexAttribArray(6);
897 glVertexAttribPointer(6, 2, GL_FLOAT, false, 0, 0LL);
898}
899
900void GLES2Renderer::drawInstancedIndexedTrianglesFromBufferObjects(int contextIdx, int32_t triangles, int32_t trianglesOffset, int32_t instances)
901{
902 Console::println(string("GLES2Renderer::drawInstancedIndexedTrianglesFromBufferObjects()::not implemented yet"));
903}
904
905void GLES2Renderer::drawIndexedTrianglesFromBufferObjects(int contextIdx, int32_t triangles, int32_t trianglesOffset)
906{
907 #define BUFFER_OFFSET(i) ((void*)(i))
908 glDrawElements(GL_TRIANGLES, triangles * 3, GL_UNSIGNED_SHORT, BUFFER_OFFSET(static_cast< int64_t >(trianglesOffset) * 3LL * 2LL));
911 statistics.triangles+= triangles;
912}
913
914void GLES2Renderer::drawInstancedTrianglesFromBufferObjects(int contextIdx, int32_t triangles, int32_t trianglesOffset, int32_t instances) {
915 Console::println(string("GL2Renderer::drawInstancedTrianglesFromBufferObjects()::not implemented yet"));
916}
917
918void GLES2Renderer::drawTrianglesFromBufferObjects(int contextIdx, int32_t triangles, int32_t trianglesOffset)
919{
920 glDrawArrays(GL_TRIANGLES, trianglesOffset * 3, triangles * 3);
923 statistics.triangles+= triangles;
924}
925
926void GLES2Renderer::drawPointsFromBufferObjects(int contextIdx, int32_t points, int32_t pointsOffset)
927{
928 glDrawArrays(GL_POINTS, pointsOffset, points);
930 statistics.points+= points;
931}
932
933void GLES2Renderer::setLineWidth(float lineWidth)
934{
935 glLineWidth(lineWidth);
936}
937
938void GLES2Renderer::drawLinesFromBufferObjects(int contextIdx, int32_t points, int32_t pointsOffset)
939{
940 glDrawArrays(GL_LINES, pointsOffset, points);
942 statistics.linePoints+= points;
943}
944
946{
947 glDisableVertexAttribArray(0);
948 glDisableVertexAttribArray(1);
949 glDisableVertexAttribArray(2);
950 glDisableVertexAttribArray(3);
951 glDisableVertexAttribArray(4);
952 glBindBuffer(GL_ARRAY_BUFFER, 0);
953 glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, 0);
954}
955
956void GLES2Renderer::disposeBufferObjects(vector<int32_t>& bufferObjectIds)
957{
958 for (auto& bufferObjectId: bufferObjectIds) vbosUsage.erase(bufferObjectId);
959 glDeleteBuffers(bufferObjectIds.size(), (const uint32_t*)bufferObjectIds.data());
960 statistics.disposedBuffers+= bufferObjectIds.size();
961}
962
963int32_t GLES2Renderer::getTextureUnit(int contextIdx)
964{
965 return activeTextureUnit;
966}
967
968void GLES2Renderer::setTextureUnit(int contextIdx, int32_t textureUnit)
969{
970 this->activeTextureUnit = textureUnit;
971 glActiveTexture(GL_TEXTURE0 + textureUnit);
972}
973
974float GLES2Renderer::readPixelDepth(int32_t x, int32_t y)
975{
976 return -1.0f;
977}
978
979ByteBuffer* GLES2Renderer::readPixels(int32_t x, int32_t y, int32_t width, int32_t height)
980{
981 return nullptr;
982}
983
985{
987 glBindTexture(GL_TEXTURE_2D, ID_NONE);
988 glBlendEquationSeparate(GL_FUNC_ADD, GL_FUNC_ADD);
989 glBlendFuncSeparate(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, GL_ONE, GL_ONE_MINUS_SRC_ALPHA);
990 glEnable(GL_BLEND);
991 glDisable(GL_DEPTH_TEST);
992 glDisable(GL_CULL_FACE);
993}
994
996{
997 glBindTexture(GL_TEXTURE_2D, ID_NONE);
998 glDisable(GL_BLEND);
999 glEnable(GL_DEPTH_TEST);
1000 glEnable(GL_CULL_FACE);
1001}
1002
1003void GLES2Renderer::dispatchCompute(int contextIdx, int32_t numGroupsX, int32_t numGroupsY, int32_t numGroupsZ) {
1004 Console::println("GLES2Renderer::dispatchCompute(): Not implemented");
1005}
1006
1008 Console::println("GLES2Renderer::memoryBarrier(): Not implemented");
1009}
1010
1011void GLES2Renderer::uploadSkinningBufferObject(int contextIdx, int32_t bufferObjectId, int32_t size, FloatBuffer* data) {
1012 Console::println("GLES2Renderer::uploadSkinningBufferObject(): Not implemented");
1013}
1014
1015void GLES2Renderer::uploadSkinningBufferObject(int contextIdx, int32_t bufferObjectId, int32_t size, IntBuffer* data) {
1016 Console::println("GLES2Renderer::uploadSkinningBufferObject(): Not implemented");
1017}
1018
1019void GLES2Renderer::bindSkinningVerticesBufferObject(int contextIdx, int32_t bufferObjectId) {
1020 Console::println("GLES2Renderer::bindSkinningVerticesBufferObject(): Not implemented");
1021}
1022
1023void GLES2Renderer::bindSkinningNormalsBufferObject(int contextIdx, int32_t bufferObjectId) {
1024 Console::println("GLES2Renderer::bindSkinningNormalsBufferObject(): Not implemented");
1025}
1026
1027void GLES2Renderer::bindSkinningVertexJointsBufferObject(int contextIdx, int32_t bufferObjectId) {
1028 Console::println("GLES2Renderer::bindSkinningVertexJointsBufferObject(): Not implemented");
1029}
1030
1031void GLES2Renderer::bindSkinningVertexJointIdxsBufferObject(int contextIdx, int32_t bufferObjectId) {
1032 Console::println("GLES2Renderer::bindSkinningVertexJointIdxsBufferObject(): Not implemented");
1033}
1034
1035void GLES2Renderer::bindSkinningVertexJointWeightsBufferObject(int contextIdx, int32_t bufferObjectId) {
1036 Console::println("GLES2Renderer::bindSkinningVertexJointWeightsBufferObject(): Not implemented");
1037}
1038
1039void GLES2Renderer::bindSkinningVerticesResultBufferObject(int contextIdx, int32_t bufferObjectId) {
1040 Console::println("GLES2Renderer::bindSkinningVerticesResultBufferObject(): Not implemented");
1041}
1042
1043void GLES2Renderer::bindSkinningNormalsResultBufferObject(int contextIdx, int32_t bufferObjectId) {
1044 Console::println("GLES2Renderer::bindSkinningNormalsResultBufferObject(): Not implemented");
1045}
1046
1047void GLES2Renderer::bindSkinningMatricesBufferObject(int contextIdx, int32_t bufferObjectId) {
1048 Console::println("GLES2Renderer::bindSkinningMatricesBufferObject(): Not implemented");
1049}
1050
1051void GLES2Renderer::setVSync(bool vSync) {
1052 // no op
1053}
1054
1056 auto stats = statistics;
1057 statistics.time = Time::getCurrentMillis();
1065 statistics.points = 0;
1071 statistics.submits = 0;
1074 return stats;
1075}
1076
1078{
1079 auto error = glGetError();
1080 if (error != GL_NO_ERROR) {
1081 Console::println(string("OpenGL Error: (" + to_string(error) + ") @:"));
1082 }
1083}
#define BUFFER_OFFSET(i)
Engine main class.
Definition: Engine.h:122
Frame buffer class.
Definition: FrameBuffer.h:21
void setClearColor(float red, float green, float blue, float alpha) override
Set up clear color.
void enableDepthBufferWriting() override
Enable depth buffer writing.
void bindSpriteSheetDimensionBufferObject(int contextIdx, int32_t bufferObjectId) override
Bind sprite sheet dimension buffer object.
void bindTexture(int contextIdx, int32_t textureId) override
Binds a texture with given id or unbinds when using ID_NONE.
void clear(int32_t mask) override
Clear render buffer with given mask.
void bindTangentsBufferObject(int contextIdx, int32_t bufferObjectId) override
Bind tangents buffer object.
void disposeBufferObjects(vector< int32_t > &bufferObjectIds) override
Disposes a frame buffer object.
int32_t getTextureUnit(int contextIdx) override
Get texture unit.
void setProgramUniformFloatMatrix3x3(int contextIdx, int32_t uniformId, const array< float, 9 > &data) override
Set up a float matrix 3x3 uniform value.
void doneGuiMode() override
Set up renderer for 3d rendering.
void setColorMask(bool red, bool green, bool blue, bool alpha) override
Set up GL rendering colormask.
void bindTextureCoordinatesBufferObject(int contextIdx, int32_t bufferObjectId) override
Bind texture coordinates buffer object.
void bindSkinningVertexJointWeightsBufferObject(int contextIdx, int32_t bufferObjectId) override
Bind skinning vertex joint weights buffer object.
void dispatchCompute(int contextIdx, int32_t numGroupsX, int32_t numGroupsY, int32_t numGroupsZ) override
Dispatch compute.
void attachShaderToProgram(int32_t programId, int32_t shaderId) override
Attaches a shader to a program.
void setFrontFace(int contextIdx, int32_t frontFace) override
Set up clock wise or counter clock wise faces as front face.
void setTextureUnit(int contextIdx, int32_t textureUnit) override
Sets up texture unit.
void drawLinesFromBufferObjects(int contextIdx, int32_t points, int32_t pointsOffset) override
Draw lines from buffer objects.
void disableBlending() override
Disables blending.
void setProgramAttributeLocation(int32_t programId, int32_t location, const string &name) override
Bind attribute to a input location.
void setViewPort(int32_t width, int32_t height) override
Set up viewport parameter.
void bindSkinningVerticesResultBufferObject(int contextIdx, int32_t bufferObjectId) override
Bind skinning vertices result buffer object.
void setProgramUniformFloat(int contextIdx, int32_t uniformId, float value) override
Set up a float uniform value.
const Renderer_Statistics getStatistics() override
void initialize() override
Initialize renderer.
void setVSync(bool vSync) override
Enable/Disable v-sync.
int32_t createGBufferColorTexture(int32_t width, int32_t height) override
Creates a geometry buffer color RGBA texture.
void setProgramUniformFloatVec3(int contextIdx, int32_t uniformId, const array< float, 3 > &data) override
Set up a float vec3 uniform value.
void bindEffectColorAddsBufferObject(int contextIdx, int32_t bufferObjectId, int32_t divisor) override
Bind effect color adds buffer object.
bool isBufferObjectsAvailable() override
Checks if buffer objects is available.
void disposeFrameBufferObject(int32_t frameBufferId) override
Disposes a frame buffer object.
void uploadBufferObject(int contextIdx, int32_t bufferObjectId, int32_t size, FloatBuffer *data) override
Uploads buffer data to buffer object.
void setProgramUniformInteger(int contextIdx, int32_t uniformId, int32_t value) override
Set up a integer uniform value.
int32_t getProgramUniformLocation(int32_t programId, const string &name) override
Returns location of given uniform variable.
void disableDepthBufferWriting() override
Disable depth buffer writing.
void bindSkinningVertexJointIdxsBufferObject(int contextIdx, int32_t bufferObjectId) override
Bind skinning vertex joint indices buffer object.
void bindNormalsBufferObject(int contextIdx, int32_t bufferObjectId) override
Bind normals buffer object.
void drawPointsFromBufferObjects(int contextIdx, int32_t points, int32_t pointsOffset) override
Draw points from buffer objects.
void drawInstancedTrianglesFromBufferObjects(int contextIdx, int32_t triangles, int32_t trianglesOffset, int32_t instances) override
Draw instanced triangles from buffer objects.
void disposeTexture(int32_t textureId) override
Dispose a texture.
int32_t createColorBufferTexture(int32_t width, int32_t height, int32_t cubeMapTextureId, int32_t cubeMapTextureIndex) override
Creates a color buffer texture.
void disableCulling(int contextIdx) override
Disable culling.
void bindEffectColorMulsBufferObject(int contextIdx, int32_t bufferObjectId, int32_t divisor) override
Bind effect color muls buffer object.
int32_t createCubeMapTexture(int contextIdx, int32_t width, int32_t height) override
Create cube map texture from frame buffers.
int32_t createFramebufferObject(int32_t depthBufferTextureId, int32_t colorBufferTextureId, int32_t cubeMapTextureId=0, int32_t cubeMapTextureIndex=0) override
Creates a frame buffer object with depth texture attached.
int32_t createDepthBufferTexture(int32_t width, int32_t height, int32_t cubeMapTextureId, int32_t cubeMapTextureIndex) override
Creates a depth buffer texture.
void bindCubeMapTexture(int contextIdx, int32_t textureId) override
Binds a cube map texture with given id or unbinds when using ID_NONE.
void setProgramUniformFloatVec4(int contextIdx, int32_t uniformId, const array< float, 4 > &data) override
Set up a float vec4 uniform value.
void setDepthFunction(int32_t depthFunction) override
Set up depth function.
void uploadCubeMapTexture(int contextIdx, Texture *textureLeft, Texture *textureRight, Texture *textureTop, Texture *textureBottom, Texture *textureFront, Texture *textureBack) override
Uploads cube map texture data to current bound texture.
void bindFrameBuffer(int32_t frameBufferId) override
Enables a framebuffer to be rendered.
int32_t loadShader(int32_t type, const string &pathName, const string &fileName, const string &definitions=string(), const string &functions=string()) override
Loads a shader.
bool isDepthTextureAvailable() override
Checks if depth texture is available.
void resizeDepthBufferTexture(int32_t textureId, int32_t width, int32_t height) override
Resizes a depth texture.
void resizeGBufferGeometryTexture(int32_t textureId, int32_t width, int32_t height) override
Resizes a geometry buffer geometry texture.
bool isInstancedRenderingAvailable() override
Checks if instanced rendering is available.
void drawTrianglesFromBufferObjects(int contextIdx, int32_t triangles, int32_t trianglesOffset) override
Draw triangles from buffer objects.
void initGuiMode() override
Set up renderer for GUI rendering.
void bindSkinningVertexJointsBufferObject(int contextIdx, int32_t bufferObjectId) override
Bind skinning vertex joints buffer object.
void setCullFace(int32_t cullFace) override
Sets up which face will be culled.
void enableBlending() override
Enables blending.
void uploadIndicesBufferObject(int contextIdx, int32_t bufferObjectId, int32_t size, ShortBuffer *data) override
Uploads buffer data to buffer object.
bool linkProgram(int32_t programId) override
Links attached shaders to a program.
void setProgramUniformFloatMatrix4x4(int contextIdx, int32_t uniformId, const array< float, 16 > &data) override
Set up a float matrix 4x4 uniform value.
void enableCulling(int contextIdx) override
Enable culling.
void bindOriginsBufferObject(int contextIdx, int32_t bufferObjectId) override
Bind origins buffer object.
int32_t createProgram(int type) override
Creates a shader program.
void bindIndicesBufferObject(int contextIdx, int32_t bufferObjectId) override
Bind indices buffer object.
void initializeFrame() override
Pre Frame Initialization.
int32_t createGBufferGeometryTexture(int32_t width, int32_t height) override
Creates a geometry buffer geometry texture.
void uploadSkinningBufferObject(int contextIdx, int32_t bufferObjectId, int32_t size, FloatBuffer *data) override
Upload skinning buffer object.
void enableAdditionBlending() override
Enable blending with c = a + b.
void bindVerticesBufferObject(int contextIdx, int32_t bufferObjectId) override
Bind vertices buffer object.
void drawInstancedIndexedTrianglesFromBufferObjects(int contextIdx, int32_t triangles, int32_t trianglesOffset, int32_t instances) override
Draw instanced indexed triangles from buffer objects.
void useProgram(int contextIdx, int32_t programId) override
Use shader program.
void bindColorsBufferObject(int contextIdx, int32_t bufferObjectId) override
Bind colors buffer object.
void bindPointSizesBufferObject(int contextIdx, int32_t bufferObjectId) override
Bind point sizes buffer object.
void bindSkinningVerticesBufferObject(int contextIdx, int32_t bufferObjectId) override
Bind skinning vertices buffer object.
void bindBitangentsBufferObject(int contextIdx, int32_t bufferObjectId) override
Bind bitangents buffer object.
void bindSkinningNormalsResultBufferObject(int contextIdx, int32_t bufferObjectId) override
Bind skinning normals result buffer object.
void setProgramUniformFloatMatrices4x4(int contextIdx, int32_t uniformId, int32_t count, FloatBuffer *data) override
Set up a float matrices 4x4 uniform values.
void resizeGBufferColorTexture(int32_t textureId, int32_t width, int32_t height) override
Resizes a geometry buffer color RGBA texture.
void bindSkinningMatricesBufferObject(int contextIdx, int32_t bufferObjectId) override
Bind skinning matrices result buffer object.
int32_t createGeometryBufferObject(int32_t depthBufferTextureId, int32_t geometryBufferTextureId1, int32_t geometryBufferTextureId2, int32_t geometryBufferTextureId3, int32_t colorBufferTextureId1, int32_t colorBufferTextureId2, int32_t colorBufferTextureId3, int32_t colorBufferTextureId4, int32_t colorBufferTextureId5) override
Creates a geometry frame buffer object.
vector< int32_t > createBufferObjects(int32_t buffers, bool useGPUMemory, bool shared) override
Generate buffer objects for vertex data and such.
void updateViewPort() override
Update viewport.
void bindModelMatricesBufferObject(int contextIdx, int32_t bufferObjectId) override
Bind model matrices buffer object.
void drawIndexedTrianglesFromBufferObjects(int contextIdx, int32_t triangles, int32_t trianglesOffset) override
Draw indexed triangles from buffer objects.
void disableDepthBufferTest() override
Disable depth buffer test.
void bindSkinningNormalsBufferObject(int contextIdx, int32_t bufferObjectId) override
Bind skinning normal buffer object.
void unbindBufferObjects(int contextIdx) override
Unbind buffer objects.
int32_t createTexture() override
Creates a texture.
float readPixelDepth(int32_t x, int32_t y) override
Reads a pixel depth.
void uploadTexture(int contextIdx, Texture *texture) override
Uploads texture data to current bound texture.
void checkGLError()
Checks if GL error did occour.
void setLineWidth(float lineWidth) override
Set line width.
ByteBuffer * readPixels(int32_t x, int32_t y, int32_t width, int32_t height) override
Read pixels.
void enableDepthBufferTest() override
Enable depth buffer test.
void resizeColorBufferTexture(int32_t textureId, int32_t width, int32_t height) override
Resize color buffer texture.
void bindTextureSpriteIndicesBufferObject(int contextIdx, int32_t bufferObjectId) override
Bind texture and sprite indices buffer object.
void setProgramUniformFloatVec2(int contextIdx, int32_t uniformId, const array< float, 2 > &data) override
Set up a float vec2 uniform value.
vector< Renderer_Context > rendererContexts
Definition: Renderer.h:188
virtual void onBindTexture(int contextIdx, int32_t textureId)=0
On bind texture event.
4x4 3D Matrix class
Definition: Matrix4x4.h:24
File system singleton class.
Definition: FileSystem.h:14
Base class of buffers.
Definition: Buffer.h:20
uint8_t * getBuffer()
Definition: Buffer.h:131
Byte buffer class.
Definition: ByteBuffer.h:24
Console class.
Definition: Console.h:26
Float buffer class.
Definition: FloatBuffer.h:18
Integer buffer class.
Definition: IntBuffer.h:14
Short buffer class.
Definition: ShortBuffer.h:14
String tools class.
Definition: StringTools.h:20
Time utility class.
Definition: Time.h:21