TDME2 1.9.121
GL2Renderer.cpp
Go to the documentation of this file.
2
3#if defined(__APPLE__)
4 #include <OpenGL/gl.h>
5#elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__linux__) || defined(_WIN32) || defined(__HAIKU__)
6 #define GLEW_NO_GLU
7 #include <GL/glew.h>
8#endif
9
10#include <string.h>
11
12#include <array>
13#include <map>
14#include <string>
15#include <vector>
16
17#include <tdme/tdme.h>
19#include <tdme/engine/Engine.h>
21#include <tdme/math/Matrix4x4.h>
32#include <tdme/utilities/Time.h>
33
34using std::array;
35using std::map;
36using std::string;
37using std::to_string;
38using std::vector;
39
41
57
58GL2Renderer::GL2Renderer()
59{
60 // setup GL2 consts
62 ID_NONE = 0;
63 CLEAR_DEPTH_BUFFER_BIT = GL_DEPTH_BUFFER_BIT;
64 CLEAR_COLOR_BUFFER_BIT = GL_COLOR_BUFFER_BIT;
65 CULLFACE_FRONT = GL_FRONT;
66 CULLFACE_BACK = GL_BACK;
67 FRONTFACE_CW = GL_CW;
68 FRONTFACE_CCW = GL_CCW;
69 SHADER_FRAGMENT_SHADER = GL_FRAGMENT_SHADER;
70 SHADER_VERTEX_SHADER = GL_VERTEX_SHADER;
72 DEPTHFUNCTION_ALWAYS = GL_ALWAYS;
73 DEPTHFUNCTION_EQUAL = GL_EQUAL;
74 DEPTHFUNCTION_LESSEQUAL = GL_LEQUAL;
76 CUBEMAPTEXTUREINDEX_NEGATIVE_X = GL_TEXTURE_CUBE_MAP_NEGATIVE_X;
77 CUBEMAPTEXTUREINDEX_POSITIVE_X = GL_TEXTURE_CUBE_MAP_POSITIVE_X;
78 CUBEMAPTEXTUREINDEX_POSITIVE_Y = GL_TEXTURE_CUBE_MAP_POSITIVE_Y;
79 CUBEMAPTEXTUREINDEX_NEGATIVE_Y = GL_TEXTURE_CUBE_MAP_NEGATIVE_Y;
80 CUBEMAPTEXTUREINDEX_POSITIVE_Z = GL_TEXTURE_CUBE_MAP_POSITIVE_Z;
81 CUBEMAPTEXTUREINDEX_NEGATIVE_Z = GL_TEXTURE_CUBE_MAP_NEGATIVE_Z;
82 // TODO: buffer objects available
85}
86
87const string GL2Renderer::getVendor() {
88 auto vendor = glGetString(GL_VENDOR);
89 return string((char*)vendor);
90}
91
93 auto renderer = glGetString(GL_RENDERER);
94 return string((char*)renderer) + " [GL2/3]";
95}
96
98{
99 return "gl2";
100}
101
103 return false;
104}
105
107{
108 // see: http://www.felixgers.de/teaching/jogl/vertexBufferObject.html
109 // Check if extension is available.
110 auto extensionOK = true; // isExtensionAvailable(u"GL_ARB_vertex_buffer_object"_j);
111 // Check for VBO functions.
112 auto functionsOK = true; // isFunctionAvailable(u"glGenBuffersARB"_j) && isFunctionAvailable(u"glBindBufferARB"_j) && isFunctionAvailable(u"glBufferDataARB"_j)&& isFunctionAvailable(u"glDeleteBuffersARB"_j);
113 return extensionOK == true && functionsOK == true;
114}
115
117{
118 return true;
119}
120
122{
123 glGetError();
124 // get default framebuffer
125 FRAMEBUFFER_DEFAULT = 0; // getContext()->getDefaultDrawFramebuffer();
126 // check VBO
128 // setup open gl
129 glShadeModel(GL_SMOOTH);
130 glClearColor(0.0f, 0.0f, 0.0f, 1.0f);
131 glClearDepth(1.0f);
132 glEnable(GL_DEPTH_TEST);
133 glEnable(GL_CULL_FACE);
134 glDepthFunc(GL_LEQUAL);
135 glHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST);
136 glBlendEquation(GL_FUNC_ADD);
137 glDisable(GL_BLEND);
138 glEnable(GL_POINT_SPRITE);
139 glEnable(GL_PROGRAM_POINT_SIZE_EXT);
141 // renderer contexts
142 rendererContexts.resize(1);
143 for (auto& rendererContext: rendererContexts) {
144 for (auto i = 0; i < rendererContext.lights.size(); i++) {
145 rendererContext.lights[i].spotCosCutoff = static_cast<float>(Math::cos(Math::PI / 180.0f * 180.0f));
146 }
147 rendererContext.textureMatrix.identity();
148 }
149}
150
152{
153}
154
156{
157}
158
160{
162}
163
165{
166 return true;
167}
168
170 return false;
171}
172
174{
175 return false;
176}
177
179{
180 return false;
181}
182
184 return false;
185}
186
188{
189 return false;
190}
191
193 return false;
194}
195
197 return false;
198}
199
201 return false;
202}
203
205 return false;
206}
207
209{
210 return -1;
211}
212
213int32_t GL2Renderer::loadShader(int32_t type, const string& pathName, const string& fileName, const string& definitions, const string& functions)
214{
215 // create shader
216 int32_t handle = glCreateShader(type);
217 // exit if no handle returned
218 if (handle == 0) return 0;
219 // shader source
220 auto shaderSource = StringTools::replace(
221 StringTools::replace(
222 FileSystem::getInstance()->getContentAsString(pathName, fileName),
223 "{$DEFINITIONS}",
224 definitions + "\n\n"
225 ),
226 "{$FUNCTIONS}",
227 functions + "\n\n"
228 );
229 // some adjustments to have GLES2 shader working with GL2
230 shaderSource = StringTools::replace(shaderSource, "#version 100", "#version 120");
231 shaderSource = StringTools::replace(shaderSource, "\r", "");
232 {
234 t.tokenize(shaderSource, "\n");
235 shaderSource.clear();
236 while (t.hasMoreTokens() == true) {
237 auto line = t.nextToken();
238 if (StringTools::startsWith(line, "precision") == true) continue;
239 shaderSource+= line + "\n";
240 }
241 }
242 //
243 string sourceString = (shaderSource);
244 char* sourceHeap = new char[sourceString.length() + 1];
245 strcpy(sourceHeap, sourceString.c_str());
246 // load source
247 glShaderSource(handle, 1, &sourceHeap, nullptr);
248 // compile
249 glCompileShader(handle);
250 //
251 delete [] sourceHeap;
252 // check state
253 int32_t compileStatus;
254 glGetShaderiv(handle, GL_COMPILE_STATUS, &compileStatus);
255 // get error
256 if (compileStatus == 0) {
257 int32_t infoLogLengthBuffer;
258 glGetShaderiv(handle, GL_INFO_LOG_LENGTH, &infoLogLengthBuffer);
259 char* infoLogBuffer = new char[infoLogLengthBuffer];
260 glGetShaderInfoLog(handle, infoLogLengthBuffer, &infoLogLengthBuffer, infoLogBuffer);
261 auto infoLogString = (string(infoLogBuffer, infoLogLengthBuffer));
262 // be verbose
263 Console::println(
264 string(
265 string("GL2Renderer::loadShader") +
266 string("[") +
267 to_string(handle) +
268 string("]") +
269 pathName +
270 "/" +
271 fileName +
272 string(": failed: ") +
273 infoLogString + "\n"
274 )
275 );
276 Console::println(shaderSource);
277 //
278 delete [] infoLogBuffer;
279 // remove shader
280 glDeleteShader(handle);
281 //
282 return 0;
283 }
284
285 //
286 return handle;
287}
288
289void GL2Renderer::useProgram(int contextIdx, int32_t programId)
290{
291 glUseProgram(programId);
292}
293
295{
296 auto programId = glCreateProgram();
297 return programId;
298}
299
300void GL2Renderer::attachShaderToProgram(int32_t programId, int32_t shaderId)
301{
302 glAttachShader(programId, shaderId);
303}
304
305bool GL2Renderer::linkProgram(int32_t programId)
306{
307 glLinkProgram(programId);
308 // check state
309 int32_t linkStatus;
310 glGetProgramiv(programId, GL_LINK_STATUS, &linkStatus);
311 if (linkStatus == 0) {
312 // get error
313 int32_t infoLogLength = 0;
314 glGetProgramiv(programId, GL_INFO_LOG_LENGTH, &infoLogLength);
315 char* infoLog = new char[infoLogLength];
316 glGetProgramInfoLog(programId, infoLogLength, &infoLogLength, infoLog);
317 auto infoLogString = (string(infoLog, infoLogLength));
318 // be verbose
319 Console::println(
320 string(
321 "[" +
322 to_string(programId) +
323 "]: failed: " +
324 infoLogString
325 )
326 );
327 delete [] infoLog;
328 return false;
329 }
330 return true;
331}
332
333int32_t GL2Renderer::getProgramUniformLocation(int32_t programId, const string& name)
334{
335 auto uniformLocation = glGetUniformLocation(programId, (name).c_str());
336 return uniformLocation;
337}
338
339void GL2Renderer::setProgramUniformInteger(int contextIdx, int32_t uniformId, int32_t value)
340{
341 glUniform1i(uniformId, value);
342}
343
344void GL2Renderer::setProgramUniformFloat(int contextIdx, int32_t uniformId, float value)
345{
346 glUniform1f(uniformId, value);
347}
348
349void GL2Renderer::setProgramUniformFloatMatrices4x4(int contextIdx, int32_t uniformId, int32_t count, FloatBuffer* data)
350{
351 glUniformMatrix4fv(uniformId, count, false, (float*)data->getBuffer());
352}
353
354void GL2Renderer::setProgramUniformFloatMatrix3x3(int contextIdx, int32_t uniformId, const array<float, 9>& data)
355{
356 glUniformMatrix3fv(uniformId, 1, false, data.data());
357}
358
359void GL2Renderer::setProgramUniformFloatMatrix4x4(int contextIdx, int32_t uniformId, const array<float, 16>& data)
360{
361 glUniformMatrix4fv(uniformId, 1, false, data.data());
362}
363
364void GL2Renderer::setProgramUniformFloatVec4(int contextIdx, int32_t uniformId, const array<float, 4>& data)
365{
366 glUniform4fv(uniformId, 1, data.data());
367}
368
369void GL2Renderer::setProgramUniformFloatVec3(int contextIdx, int32_t uniformId, const array<float, 3>& data)
370{
371 glUniform3fv(uniformId, 1, data.data());
372}
373
374void GL2Renderer::setProgramUniformFloatVec2(int contextIdx, int32_t uniformId, const array<float, 2>& data)
375{
376 glUniform2fv(uniformId, 1, data.data());
377}
378
379void GL2Renderer::setProgramAttributeLocation(int32_t programId, int32_t location, const string& name)
380{
381 glBindAttribLocation(programId, location, (name).c_str());
382}
383
384void GL2Renderer::setViewPort(int32_t width, int32_t height)
385{
386 this->viewPortWidth = width;
387 this->viewPortHeight = height;
388}
389
391{
392 glViewport(0, 0, viewPortWidth, viewPortHeight);
393}
394
395void GL2Renderer::setClearColor(float red, float green, float blue, float alpha)
396{
397 glClearColor(red, green, blue, alpha);
398}
399
400void GL2Renderer::enableCulling(int contextIdx)
401{
402 glEnable(GL_CULL_FACE);
403}
404
405void GL2Renderer::disableCulling(int contextIdx)
406{
407 glDisable(GL_CULL_FACE);
408}
409
410void GL2Renderer::setFrontFace(int contextIdx, int32_t frontFace)
411{
412 glFrontFace(frontFace);
413}
414
415void GL2Renderer::setCullFace(int32_t cullFace)
416{
417 glCullFace(cullFace);
418}
419
421{
422 glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
423 glEnable(GL_BLEND);
424}
425
427 glBlendFunc(GL_ONE, GL_ONE);
428 glEnable(GL_BLEND);
429}
430
432{
433 glDisable(GL_BLEND);
434}
435
437{
438 glDepthMask(true);
439}
440
442{
443 glDepthMask(false);
444}
445
447{
448 glDisable(GL_DEPTH_TEST);
449}
450
452{
453 glEnable(GL_DEPTH_TEST);
454}
455
456void GL2Renderer::setDepthFunction(int32_t depthFunction)
457{
458 glDepthFunc(depthFunction);
459}
460
461void GL2Renderer::setColorMask(bool red, bool green, bool blue, bool alpha)
462{
463 glColorMask(red, green, blue, alpha);
464}
465
466void GL2Renderer::clear(int32_t mask)
467{
468 glClear(mask);
470}
471
473{
474 uint32_t textureId;
475 glGenTextures(1, &textureId);
476 return textureId;
477}
478
479int32_t GL2Renderer::createDepthBufferTexture(int32_t width, int32_t height, int32_t cubeMapTextureId, int32_t cubeMapTextureIndex)
480{
481 uint32_t depthTextureId;
482 // create depth texture
483 glGenTextures(1, &depthTextureId);
484 glBindTexture(GL_TEXTURE_2D, depthTextureId);
485 // create depth texture
486 glTexImage2D(GL_TEXTURE_2D, 0, GL_DEPTH_COMPONENT, width, height, 0, GL_DEPTH_COMPONENT, GL_FLOAT, nullptr);
487 // depth texture parameter
488 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
489 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
490 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
491 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
492 // unbind, return
493 glBindTexture(GL_TEXTURE_2D, ID_NONE);
494 return depthTextureId;
495}
496
497int32_t GL2Renderer::createColorBufferTexture(int32_t width, int32_t height, int32_t cubeMapTextureId, int32_t cubeMapTextureIndex)
498{
499 uint32_t colorBufferTextureId;
500 // create color texture
501 glGenTextures(1, &colorBufferTextureId);
502 glBindTexture(GL_TEXTURE_2D, colorBufferTextureId);
503 // create color texture
504 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, static_cast< Buffer* >(nullptr));
505 // color texture parameter
506 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
507 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
508 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
509 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
510 // unbind, return
511 glBindTexture(GL_TEXTURE_2D, ID_NONE);
512 return colorBufferTextureId;
513}
514
515int32_t GL2Renderer::createGBufferGeometryTexture(int32_t width, int32_t height) {
516 Console::println("GL2Renderer::createGBufferGeometryTexture(): Not implemented");
517 return ID_NONE;
518}
519
520int32_t GL2Renderer::createGBufferColorTexture(int32_t width, int32_t height) {
521 Console::println("GL2Renderer::createGBufferColorTexture(): Not implemented");
522 return ID_NONE;
523}
524
525void GL2Renderer::uploadTexture(int contextIdx, Texture* texture)
526{
527 glTexImage2D(
528 GL_TEXTURE_2D,
529 0,
530 texture->getDepth() == 32?GL_RGBA:GL_RGB,
531 texture->getTextureWidth(),
532 texture->getTextureHeight(),
533 0,
534 texture->getDepth() == 32?GL_RGBA:GL_RGB,
535 GL_UNSIGNED_BYTE,
536 texture->getTextureData()->getBuffer()
537 );
538 if (texture->getAtlasSize() > 1) {
539 if (texture->isUseMipMap() == true) {
540 float maxLodBias;
541 glGetFloatv(GL_MAX_TEXTURE_LOD_BIAS, &maxLodBias);
542 glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_LOD_BIAS, -Math::clamp(static_cast<float>(texture->getAtlasSize()) * 0.125f, 0.0f, maxLodBias));
543 auto borderSize = 32;
544 auto maxLevel = 0;
545 while (borderSize > 4) {
546 maxLevel++;
547 borderSize/= 2;
548 }
549 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_BASE_LEVEL, 0);
550 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAX_LEVEL, maxLevel - 1);
551 glGenerateMipmap(GL_TEXTURE_2D);
552 }
553 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
554 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
555 } else {
556 if (texture->isUseMipMap() == true) glGenerateMipmap(GL_TEXTURE_2D);
557 if (texture->isRepeat() == true) {
558 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
559 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
560 } else {
561 float color[4] = {0.0f, 0.0f, 0.0f, 0.0f};
562 if (texture->getClampMode() == Texture::CLAMPMODE_TRANSPARENTPIXEL) glTexParameterfv(GL_TEXTURE_2D, GL_TEXTURE_BORDER_COLOR, color);
563 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, texture->getClampMode() == Texture::CLAMPMODE_EDGE?GL_CLAMP_TO_EDGE:GL_CLAMP_TO_BORDER);
564 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, texture->getClampMode() == Texture::CLAMPMODE_EDGE?GL_CLAMP_TO_EDGE:GL_CLAMP_TO_BORDER);
565 }
566 }
567 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, texture->isUseMipMap() == true?GL_LINEAR_MIPMAP_LINEAR:GL_LINEAR);
568 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
570}
571
572void GL2Renderer::uploadCubeMapTexture(int contextIdx, Texture* textureLeft, Texture* textureRight, Texture* textureTop, Texture* textureBottom, Texture* textureFront, Texture* textureBack) {
573 glTexImage2D(
574 GL_TEXTURE_CUBE_MAP_NEGATIVE_X,
575 0,
576 textureLeft->getDepth() == 32?GL_RGBA:GL_RGB,
577 textureLeft->getTextureWidth(),
578 textureLeft->getTextureHeight(),
579 0,
580 textureLeft->getDepth() == 32?GL_RGBA:GL_RGB,
581 GL_UNSIGNED_BYTE,
582 textureLeft->getTextureData()->getBuffer()
583 );
584 glTexImage2D(
585 GL_TEXTURE_CUBE_MAP_POSITIVE_X,
586 0,
587 textureRight->getDepth() == 32?GL_RGBA:GL_RGB,
588 textureRight->getTextureWidth(),
589 textureRight->getTextureHeight(),
590 0,
591 textureRight->getDepth() == 32?GL_RGBA:GL_RGB,
592 GL_UNSIGNED_BYTE,
593 textureRight->getTextureData()->getBuffer()
594 );
595 glTexImage2D(
596 GL_TEXTURE_CUBE_MAP_POSITIVE_Y,
597 0,
598 textureTop->getDepth() == 32?GL_RGBA:GL_RGB,
599 textureTop->getTextureWidth(),
600 textureTop->getTextureHeight(),
601 0,
602 textureTop->getDepth() == 32?GL_RGBA:GL_RGB,
603 GL_UNSIGNED_BYTE,
604 textureTop->getTextureData()->getBuffer()
605 );
606 glTexImage2D(
607 GL_TEXTURE_CUBE_MAP_NEGATIVE_Y,
608 0,
609 textureBottom->getDepth() == 32?GL_RGBA:GL_RGB,
610 textureBottom->getTextureWidth(),
611 textureBottom->getTextureHeight(),
612 0,
613 textureBottom->getDepth() == 32?GL_RGBA:GL_RGB,
614 GL_UNSIGNED_BYTE,
615 textureBottom->getTextureData()->getBuffer()
616 );
617 glTexImage2D(
618 GL_TEXTURE_CUBE_MAP_POSITIVE_Z,
619 0,
620 textureFront->getDepth() == 32?GL_RGBA:GL_RGB,
621 textureFront->getTextureWidth(),
622 textureFront->getTextureHeight(),
623 0,
624 textureFront->getDepth() == 32?GL_RGBA:GL_RGB,
625 GL_UNSIGNED_BYTE,
626 textureFront->getTextureData()->getBuffer()
627 );
628 glTexImage2D(
629 GL_TEXTURE_CUBE_MAP_NEGATIVE_Z,
630 0,
631 textureBack->getDepth() == 32?GL_RGBA:GL_RGB,
632 textureBack->getTextureWidth(),
633 textureBack->getTextureHeight(),
634 0,
635 textureBack->getDepth() == 32?GL_RGBA:GL_RGB,
636 GL_UNSIGNED_BYTE,
637 textureBack->getTextureData()->getBuffer()
638 );
639 glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
640 glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
641 glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_WRAP_R, GL_CLAMP_TO_EDGE);
642 glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
643 glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
645}
646
647int32_t GL2Renderer::createCubeMapTexture(int contextIdx, int32_t width, int32_t height) {
648 // generate open gl texture
649 uint32_t textureId;
650 glGenTextures(1, &textureId);
651 glBindTexture(GL_TEXTURE_CUBE_MAP, textureId);
652 glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
653 glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
654 glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_WRAP_R, GL_CLAMP_TO_EDGE);
655 glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
656 glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
657 glTexImage2D(
658 GL_TEXTURE_CUBE_MAP_NEGATIVE_X,
659 0,
660 GL_RGBA,
661 width,
662 height,
663 0,
664 GL_RGBA,
665 GL_UNSIGNED_BYTE,
666 nullptr
667 );
668 glTexImage2D(
669 GL_TEXTURE_CUBE_MAP_POSITIVE_X,
670 0,
671 GL_RGBA,
672 width,
673 height,
674 0,
675 GL_RGBA,
676 GL_UNSIGNED_BYTE,
677 nullptr
678 );
679 glTexImage2D(
680 GL_TEXTURE_CUBE_MAP_POSITIVE_Y,
681 0,
682 GL_RGBA,
683 width,
684 height,
685 0,
686 GL_RGBA,
687 GL_UNSIGNED_BYTE,
688 nullptr
689 );
690 glTexImage2D(
691 GL_TEXTURE_CUBE_MAP_NEGATIVE_Y,
692 0,
693 GL_RGBA,
694 width,
695 height,
696 0,
697 GL_RGBA,
698 GL_UNSIGNED_BYTE,
699 nullptr
700 );
701 glTexImage2D(
702 GL_TEXTURE_CUBE_MAP_POSITIVE_Z,
703 0,
704 GL_RGBA,
705 width,
706 height,
707 0,
708 GL_RGBA,
709 GL_UNSIGNED_BYTE,
710 nullptr
711 );
712 glTexImage2D(
713 GL_TEXTURE_CUBE_MAP_NEGATIVE_Z,
714 0,
715 GL_RGBA,
716 width,
717 height,
718 0,
719 GL_RGBA,
720 GL_UNSIGNED_BYTE,
721 nullptr
722 );
723 glBindTexture(GL_TEXTURE_CUBE_MAP, 0);
724 return textureId;
725}
726
727void GL2Renderer::resizeDepthBufferTexture(int32_t textureId, int32_t width, int32_t height)
728{
729 glBindTexture(GL_TEXTURE_2D, textureId);
730 glTexImage2D(GL_TEXTURE_2D, 0, GL_DEPTH_COMPONENT, width, height, 0, GL_DEPTH_COMPONENT, GL_FLOAT, nullptr);
731 glBindTexture(GL_TEXTURE_2D, 0);
732}
733
734void GL2Renderer::resizeColorBufferTexture(int32_t textureId, int32_t width, int32_t height)
735{
736 glBindTexture(GL_TEXTURE_2D, textureId);
737 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, nullptr);
738 glBindTexture(GL_TEXTURE_2D, 0);
739}
740
741void GL2Renderer::resizeGBufferGeometryTexture(int32_t textureId, int32_t width, int32_t height) {
742 Console::println("GL2Renderer::resizeGBufferGeometryTexture(): Not implemented");
743}
744
745void GL2Renderer::resizeGBufferColorTexture(int32_t textureId, int32_t width, int32_t height) {
746 Console::println("GL2Renderer::resizeGBufferColorTexture(): Not implemented");
747}
748
749void GL2Renderer::bindTexture(int contextIdx, int32_t textureId)
750{
751 glBindTexture(GL_TEXTURE_2D, textureId);
752 onBindTexture(contextIdx, textureId);
753}
754
755void GL2Renderer::bindCubeMapTexture(int contextIdx, int32_t textureId) {
756 glBindTexture(GL_TEXTURE_CUBE_MAP, textureId);
757 onBindTexture(contextIdx, textureId);
758}
759
760void GL2Renderer::disposeTexture(int32_t textureId)
761{
762 glDeleteTextures(1, (const uint32_t*)&textureId);
764}
765
766int32_t GL2Renderer::createFramebufferObject(int32_t depthBufferTextureId, int32_t colorBufferTextureId, int32_t cubeMapTextureId, int32_t cubeMapTextureIndex)
767{
768 // create a frame buffer object
769 uint32_t frameBufferId;
770 glGenFramebuffers(1, &frameBufferId);
771 glBindFramebuffer(GL_FRAMEBUFFER, frameBufferId);
772 // attach the depth buffer texture to FBO
773 if (depthBufferTextureId != ID_NONE) {
774 #ifdef __APPLE__
775 glFramebufferTextureEXT(GL_FRAMEBUFFER, GL_DEPTH_ATTACHMENT, depthBufferTextureId, 0);
776 #else
777 glFramebufferTexture2D(GL_FRAMEBUFFER, GL_DEPTH_ATTACHMENT, GL_TEXTURE_2D, depthBufferTextureId, 0);
778 #endif
779 }
780 // attach the color buffer texture to FBO
781 if (colorBufferTextureId != ID_NONE) {
782 #ifdef __APPLE__
783 glFramebufferTextureEXT(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, colorBufferTextureId, 0);
784 #else
785 glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, colorBufferTextureId, 0);
786 #endif
787 glDrawBuffer(GL_COLOR_ATTACHMENT0);
788 glReadBuffer(GL_COLOR_ATTACHMENT0);
789 } else
790 if (cubeMapTextureId != ID_NONE) {
791 glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, cubeMapTextureIndex, cubeMapTextureId, 0);
792 } else {
793 glDrawBuffer(GL_NONE);
794 glReadBuffer(GL_NONE);
795 }
796 // check FBO status
797 int32_t fboStatus = glCheckFramebufferStatus(GL_FRAMEBUFFER);
798 if (fboStatus != GL_FRAMEBUFFER_COMPLETE) {
799 Console::println(string("GL_FRAMEBUFFER_COMPLETE_EXT failed, CANNOT use FBO: ") + to_string(fboStatus));
800 }
801 // switch back to window-system-provided framebuffer
802 glBindFramebuffer(GL_FRAMEBUFFER, 0);
803 return frameBufferId;
804}
805
807 int32_t depthBufferTextureId,
808 int32_t geometryBufferTextureId1,
809 int32_t geometryBufferTextureId2,
810 int32_t geometryBufferTextureId3,
811 int32_t colorBufferTextureId1,
812 int32_t colorBufferTextureId2,
813 int32_t colorBufferTextureId3,
814 int32_t colorBufferTextureId4,
815 int32_t colorBufferTextureId5
816) {
817 Console::println(string("GL2Renderer::createGeometryBufferObject()::not implemented yet"));
818 return ID_NONE;
819}
820
821void GL2Renderer::bindFrameBuffer(int32_t frameBufferId)
822{
823 glBindFramebuffer(GL_FRAMEBUFFER, frameBufferId);
824}
825
826void GL2Renderer::disposeFrameBufferObject(int32_t frameBufferId)
827{
828 glDeleteFramebuffers(1, (uint32_t*)&frameBufferId);
829}
830
831vector<int32_t> GL2Renderer::createBufferObjects(int32_t buffers, bool useGPUMemory, bool shared)
832{
833 vector<int32_t> bufferObjectIds;
834 bufferObjectIds.resize(buffers);
835 glGenBuffers(buffers, (uint32_t*)bufferObjectIds.data());
836 for (auto bufferObjectId: bufferObjectIds) vbosUsage[bufferObjectId] = useGPUMemory == true?GL_STATIC_DRAW:GL_STREAM_DRAW;
837 return bufferObjectIds;
838}
839
840void GL2Renderer::uploadBufferObject(int contextIdx, int32_t bufferObjectId, int32_t size, FloatBuffer* data)
841{
842 glBindBuffer(GL_ARRAY_BUFFER, bufferObjectId);
843 glBufferData(GL_ARRAY_BUFFER, size, data->getBuffer(), vbosUsage[bufferObjectId]);
844 glBindBuffer(GL_ARRAY_BUFFER, ID_NONE);
846}
847
848void GL2Renderer::uploadBufferObject(int contextIdx, int32_t bufferObjectId, int32_t size, IntBuffer* data)
849{
850 glBindBuffer(GL_ARRAY_BUFFER, bufferObjectId);
851 glBufferData(GL_ARRAY_BUFFER, size, data->getBuffer(), vbosUsage[bufferObjectId]);
852 glBindBuffer(GL_ARRAY_BUFFER, ID_NONE);
854}
855
856void GL2Renderer::uploadBufferObject(int contextIdx, int32_t bufferObjectId, int32_t size, ShortBuffer* data)
857{
858 glBindBuffer(GL_ARRAY_BUFFER, bufferObjectId);
859 glBufferData(GL_ARRAY_BUFFER, size, data->getBuffer(), vbosUsage[bufferObjectId]);
860 glBindBuffer(GL_ARRAY_BUFFER, ID_NONE);
862}
863
864void GL2Renderer::uploadIndicesBufferObject(int contextIdx, int32_t bufferObjectId, int32_t size, ShortBuffer* data)
865{
866 Console::println(string("GL2Renderer::uploadIndicesBufferObject()::not implemented yet"));
867}
868
869void GL2Renderer::uploadIndicesBufferObject(int contextIdx, int32_t bufferObjectId, int32_t size, IntBuffer* data)
870{
871 glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, bufferObjectId);
872 glBufferData(GL_ELEMENT_ARRAY_BUFFER, size, data->getBuffer(), vbosUsage[bufferObjectId]);
873 glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, ID_NONE);
875}
876
877void GL2Renderer::bindIndicesBufferObject(int contextIdx, int32_t bufferObjectId)
878{
879 glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, bufferObjectId);
880}
881
882void GL2Renderer::bindTextureCoordinatesBufferObject(int contextIdx, int32_t bufferObjectId)
883{
884 glBindBuffer(GL_ARRAY_BUFFER, bufferObjectId);
885 glEnableVertexAttribArray(2);
886 glVertexAttribPointer(2, 2, GL_FLOAT, false, 0, 0LL);
887}
888
889void GL2Renderer::bindVerticesBufferObject(int contextIdx, int32_t bufferObjectId)
890{
891 glBindBuffer(GL_ARRAY_BUFFER, bufferObjectId);
892 glEnableVertexAttribArray(0);
893 glVertexAttribPointer(0, 3, GL_FLOAT, false, 0, 0LL);
894}
895
896void GL2Renderer::bindNormalsBufferObject(int contextIdx, int32_t bufferObjectId)
897{
898 glBindBuffer(GL_ARRAY_BUFFER, bufferObjectId);
899 glEnableVertexAttribArray(1);
900 glVertexAttribPointer(1, 3, GL_FLOAT, false, 0, 0LL);
901}
902
903void GL2Renderer::bindColorsBufferObject(int contextIdx, int32_t bufferObjectId)
904{
905 glBindBuffer(GL_ARRAY_BUFFER, bufferObjectId);
906 glEnableVertexAttribArray(3);
907 glVertexAttribPointer(3, 4, GL_FLOAT, false, 0, 0LL);
908}
909
910void GL2Renderer::bindTangentsBufferObject(int contextIdx, int32_t bufferObjectId)
911{
912 Console::println(string("GL2Renderer::bindTangentsBufferObject()::not implemented yet"));
913}
914
915void GL2Renderer::bindBitangentsBufferObject(int contextIdx, int32_t bufferObjectId)
916{
917 Console::println(string("GL2Renderer::bindBitangentsBufferObject()::not implemented yet"));
918}
919
920void GL2Renderer::bindModelMatricesBufferObject(int contextIdx, int32_t bufferObjectId) {
921 Console::println(string("GL2Renderer::bindModelViewMatricesBufferObject()::not implemented yet"));
922}
923
924void GL2Renderer::bindEffectColorMulsBufferObject(int contextIdx, int32_t bufferObjectId, int32_t divisor) {
925 glBindBuffer(GL_ARRAY_BUFFER, bufferObjectId);
926 glEnableVertexAttribArray(10);
927 glVertexAttribPointer(10, 4, GL_FLOAT, false, 0, 0LL);
928}
929
930void GL2Renderer::bindEffectColorAddsBufferObject(int contextIdx, int32_t bufferObjectId, int32_t divisor) {
931 glBindBuffer(GL_ARRAY_BUFFER, bufferObjectId);
932 glEnableVertexAttribArray(11);
933 glVertexAttribPointer(11, 4, GL_FLOAT, false, 0, 0LL);
934}
935
936void GL2Renderer::bindOriginsBufferObject(int contextIdx, int32_t bufferObjectId) {
937 glBindBuffer(GL_ARRAY_BUFFER, bufferObjectId);
938 glEnableVertexAttribArray(4);
939 glVertexAttribPointer(4, 3, GL_FLOAT, false, 0, 0LL);
940}
941
942void GL2Renderer::bindTextureSpriteIndicesBufferObject(int contextIdx, int32_t bufferObjectId) {
943 glBindBuffer(GL_ARRAY_BUFFER, bufferObjectId);
944 glEnableVertexAttribArray(1);
945 glVertexAttribPointer(1, 2, GL_FLOAT, false, 0, 0LL);
946}
947
948void GL2Renderer::bindPointSizesBufferObject(int contextIdx, int32_t bufferObjectId) {
949 glBindBuffer(GL_ARRAY_BUFFER, bufferObjectId);
950 glEnableVertexAttribArray(5);
951 glVertexAttribPointer(5, 1, GL_FLOAT, false, 0, 0LL);
952}
953
954void GL2Renderer::bindSpriteSheetDimensionBufferObject(int contextIdx, int32_t bufferObjectId) {
955 glBindBuffer(GL_ARRAY_BUFFER, bufferObjectId);
956 glEnableVertexAttribArray(6);
957 glVertexAttribPointer(6, 2, GL_FLOAT, false, 0, 0LL);
958}
959
960void GL2Renderer::drawInstancedIndexedTrianglesFromBufferObjects(int contextIdx, int32_t triangles, int32_t trianglesOffset, int32_t instances)
961{
962 Console::println(string("GL2Renderer::drawInstancedIndexedTrianglesFromBufferObjects()::not implemented yet"));
963}
964
965void GL2Renderer::drawIndexedTrianglesFromBufferObjects(int contextIdx, int32_t triangles, int32_t trianglesOffset)
966{
967 #define BUFFER_OFFSET(i) ((void*)(i))
968 glDrawElements(GL_TRIANGLES, triangles * 3, GL_UNSIGNED_INT, BUFFER_OFFSET(static_cast< int64_t >(trianglesOffset) * 3LL * 4LL));
971 statistics.triangles+= triangles;
972}
973
974void GL2Renderer::drawInstancedTrianglesFromBufferObjects(int contextIdx, int32_t triangles, int32_t trianglesOffset, int32_t instances) {
975 Console::println(string("GL2Renderer::drawInstancedTrianglesFromBufferObjects()::not implemented yet"));
976}
977
978void GL2Renderer::drawTrianglesFromBufferObjects(int contextIdx, int32_t triangles, int32_t trianglesOffset)
979{
980 glDrawArrays(GL_TRIANGLES, trianglesOffset * 3, triangles * 3);
983 statistics.triangles+= triangles;
984}
985
986void GL2Renderer::drawPointsFromBufferObjects(int contextIdx, int32_t points, int32_t pointsOffset)
987{
988 glDrawArrays(GL_POINTS, pointsOffset, points);
990 statistics.points+= points;
991}
992
993void GL2Renderer::setLineWidth(float lineWidth)
994{
995 glLineWidth(lineWidth);
996}
997
998void GL2Renderer::drawLinesFromBufferObjects(int contextIdx, int32_t points, int32_t pointsOffset)
999{
1000 glDrawArrays(GL_LINES, pointsOffset, points);
1002 statistics.linePoints+= points;
1003}
1004
1006{
1007 glDisableVertexAttribArray(0);
1008 glDisableVertexAttribArray(1);
1009 glDisableVertexAttribArray(2);
1010 glDisableVertexAttribArray(3);
1011 glBindBuffer(GL_ARRAY_BUFFER, 0);
1012 glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, 0);
1013}
1014
1015void GL2Renderer::disposeBufferObjects(vector<int32_t>& bufferObjectIds)
1016{
1017 for (auto& bufferObjectId: bufferObjectIds) vbosUsage.erase(bufferObjectId);
1018 glDeleteBuffers(bufferObjectIds.size(), (const uint32_t*)bufferObjectIds.data());
1019 statistics.disposedBuffers+= bufferObjectIds.size();
1020}
1021
1022int32_t GL2Renderer::getTextureUnit(int contextIdx)
1023{
1024 return activeTextureUnit;
1025}
1026
1027void GL2Renderer::setTextureUnit(int contextIdx, int32_t textureUnit)
1028{
1029 this->activeTextureUnit = textureUnit;
1030 glActiveTexture(GL_TEXTURE0 + textureUnit);
1031}
1032
1033float GL2Renderer::readPixelDepth(int32_t x, int32_t y)
1034{
1035 float depth;
1036 glReadPixels(x, y, 1, 1, GL_DEPTH_COMPONENT, GL_FLOAT, &depth);
1037 return depth;
1038}
1039
1040ByteBuffer* GL2Renderer::readPixels(int32_t x, int32_t y, int32_t width, int32_t height)
1041{
1042 auto pixelBuffer = ByteBuffer::allocate(width * height * 4);
1043 glPixelStorei(GL_PACK_ALIGNMENT, 1);
1044 glReadPixels(x, y, width, height, GL_RGBA, GL_UNSIGNED_BYTE, pixelBuffer->getBuffer());
1045 return pixelBuffer;
1046}
1047
1049{
1051 glBindTexture(GL_TEXTURE_2D, ID_NONE);
1052 glBlendEquationSeparate(GL_FUNC_ADD, GL_FUNC_ADD);
1053 glBlendFuncSeparate(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, GL_ONE, GL_ONE_MINUS_SRC_ALPHA);
1054 glEnable(GL_BLEND);
1055 glDisable(GL_DEPTH_TEST);
1056 glDisable(GL_CULL_FACE);
1057 glGetError();
1058}
1059
1061{
1062 glGetError();
1063 glBindTexture(GL_TEXTURE_2D, ID_NONE);
1064 glDisable(GL_BLEND);
1065 glEnable(GL_DEPTH_TEST);
1066 glEnable(GL_CULL_FACE);
1067}
1068
1069void GL2Renderer::dispatchCompute(int contextIdx, int32_t numGroupsX, int32_t numGroupsY, int32_t numGroupsZ) {
1070 Console::println("GL2Renderer::dispatchCompute(): Not implemented");
1071}
1072
1074 Console::println("GL2Renderer::memoryBarrier(): Not implemented");
1075}
1076
1077void GL2Renderer::uploadSkinningBufferObject(int contextIdx, int32_t bufferObjectId, int32_t size, FloatBuffer* data) {
1078 Console::println("GL2Renderer::uploadSkinningBufferObject(): Not implemented");
1079}
1080
1081void GL2Renderer::uploadSkinningBufferObject(int contextIdx, int32_t bufferObjectId, int32_t size, IntBuffer* data) {
1082 Console::println("GL2Renderer::uploadSkinningBufferObject(): Not implemented");
1083}
1084
1085void GL2Renderer::bindSkinningVerticesBufferObject(int contextIdx, int32_t bufferObjectId) {
1086 Console::println("GL2Renderer::bindSkinningVerticesBufferObject(): Not implemented");
1087}
1088
1089void GL2Renderer::bindSkinningNormalsBufferObject(int contextIdx, int32_t bufferObjectId) {
1090 Console::println("GL2Renderer::bindSkinningNormalsBufferObject(): Not implemented");
1091}
1092
1093void GL2Renderer::bindSkinningVertexJointsBufferObject(int contextIdx, int32_t bufferObjectId) {
1094 Console::println("GL2Renderer::bindSkinningVertexJointsBufferObject(): Not implemented");
1095}
1096
1097void GL2Renderer::bindSkinningVertexJointIdxsBufferObject(int contextIdx, int32_t bufferObjectId) {
1098 Console::println("GL2Renderer::bindSkinningVertexJointIdxsBufferObject(): Not implemented");
1099}
1100
1101void GL2Renderer::bindSkinningVertexJointWeightsBufferObject(int contextIdx, int32_t bufferObjectId) {
1102 Console::println("GL2Renderer::bindSkinningVertexJointWeightsBufferObject(): Not implemented");
1103}
1104
1105void GL2Renderer::bindSkinningVerticesResultBufferObject(int contextIdx, int32_t bufferObjectId) {
1106 Console::println("GL2Renderer::bindSkinningVerticesResultBufferObject(): Not implemented");
1107}
1108
1109void GL2Renderer::bindSkinningNormalsResultBufferObject(int contextIdx, int32_t bufferObjectId) {
1110 Console::println("GL2Renderer::bindSkinningNormalsResultBufferObject(): Not implemented");
1111}
1112
1113void GL2Renderer::bindSkinningMatricesBufferObject(int contextIdx, int32_t bufferObjectId) {
1114 Console::println("GL2Renderer::bindSkinningMatricesBufferObject(): Not implemented");
1115}
1116
1117void GL2Renderer::setVSync(bool vSync) {
1118 // no op
1119}
1120
1122 auto stats = statistics;
1123 statistics.time = Time::getCurrentMillis();
1131 statistics.points = 0;
1137 statistics.submits = 0;
1140 return stats;
1141}
#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 memoryBarrier() override
Memory barrier.
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.
bool checkBufferObjectsAvailable()
Checks if VBO is available.
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 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 tokenizer class.
void tokenize(const string &str, const string &delimiters)
Tokenize.
String tools class.
Definition: StringTools.h:20
Time utility class.
Definition: Time.h:21