TDME2 1.9.121
Renderer.h
Go to the documentation of this file.
1#pragma once
2
3#if defined(_MSC_VER)
4 // this suppresses a warning redefinition of APIENTRY macro
5 #define NOMINMAX
6 #include <windows.h>
7#endif
8#define GLFW_INCLUDE_NONE
9#include <GLFW/glfw3.h>
10
11#include <array>
12#include <map>
13#include <string>
14#include <vector>
15
16#include <tdme/tdme.h>
20#include <tdme/math/fwd-tdme.h>
22#include <tdme/math/Matrix4x4.h>
24
25using std::array;
26using std::map;
27using std::string;
28using std::vector;
29
38
39/**
40 * Renderer interface
41 * @author Andreas Drewke
42 * @ersion $Id$
43 */
45{
46public:
47
49
50 /**
51 * Bean holding light properties
52 */
54 {
55 int32_t enabled { 0 };
56 array<float, 4> ambient {{ 0.0f, 0.0f, 0.0f, 1.0f }};
57 array<float, 4> diffuse {{ 1.0f, 1.0f, 1.0f, 1.0f }};
58 array<float, 4> specular {{ 1.0f, 1.0f, 1.0f, 1.0f }};
59 array<float, 4> position {{ 0.0f, 0.0f, 0.0f, 0.0f }};
60 array<float, 3> spotDirection {{ 0.0f, 0.0f, -1.0f }};
61 float spotExponent { 0.0f };
62 float spotCosCutoff { 0.0f };
63 float constantAttenuation { 1.0f };
64 float linearAttenuation { 0.0f };
65 float quadraticAttenuation { 0.0f };
66 float radius { 0.0f };
67 };
68
69 /**
70 * Bean holding PBR material properties
71 */
73 {
74 array<float, 4> baseColorFactor {{ 1.0f, 1.0f, 1.0f, 1.0f }};
75 float metallicFactor { 1.0f };
76 float roughnessFactor { 1.0f };
77 float normalScale { 1.0f };
78 float exposure { 1.0f };
81 };
82
83 /**
84 * Bean holding specular material properties
85 */
87 {
88 array<float, 4> ambient {{ 0.2f, 0.2f, 0.2f, 1.0f }};
89 array<float, 4> diffuse {{ 0.8f, 0.8f, 0.8f, 1.0f }};
90 array<float, 4> specular {{ 0.0f, 0.0f, 0.0f, 1.0f }};
91 array<float, 4> emission {{ 0.0f, 0.0f, 0.0f, 1.0f }};
92 float shininess { 0.0f };
93 float reflection { 0.0f };
97 array<float, 2> textureAtlasPixelDimension { 0.0f, 0.0f };
98 };
99
101 array<float, 4> effectColorMul {{ 1.0f, 1.0f, 1.0f, 1.0f }};
102 array<float, 4> effectColorAdd {{ 0.0f, 0.0f, 0.0f, 0.0f }};
105 array<Renderer_Light, 8> lights {}; // TODO: we need this dynamically
107 float maskMaxValue { 1.0f };
108 int32_t lighting { 0 };
110 string shader;
112 };
113
114 /**
115 * Bean holding light properties
116 */
118 {
119 int64_t time { -1LL };
120 int64_t memoryUsageGPU { -1LL };
121 int64_t memoryUsageShared { -1LL };
122 uint32_t clearCalls { 0 };
123 uint32_t renderCalls { 0 };
124 uint32_t computeCalls { 0 };
125 uint32_t instances { 0 };
126 uint32_t triangles { 0 };
127 uint32_t points { 0 };
128 uint32_t linePoints { 0 };
129 uint32_t bufferUploads { 0 };
130 uint32_t textureUploads { 0 };
131 uint32_t renderPasses { 0 };
132 uint32_t drawCommands { 0 };
133 uint32_t submits { 0 };
134 uint32_t disposedTextures { 0 };
135 uint32_t disposedBuffers { 0 };
136 };
137
139
141
142 int32_t ID_NONE;
168
172
176protected:
185 int32_t effectPass;
187
188 vector<Renderer_Context> rendererContexts;
189public:
190 /**
191 * Public constructor
192 */
193 Renderer();
194
195 /**
196 * Destructor
197 */
198 virtual ~Renderer();
199
200 /**
201 * @return renderer type
202 */
204 return rendererType;
205 }
206
207 /**
208 * Prepare window system renderer context
209 * @param tryIdx try index
210 */
211 virtual bool prepareWindowSystemRendererContext(int tryIdx) = 0;
212
213 /**
214 * Initialize window system renderer context
215 * @param glfwWindow GLFL window
216 */
217 virtual bool initializeWindowSystemRendererContext(GLFWwindow* glfwWindow) = 0;
218
219 /**
220 * Initialize renderer
221 */
222 virtual void initialize() = 0;
223
224 /**
225 * Pre Frame Initialization
226 */
227 virtual void initializeFrame() = 0;
228
229 /**
230 * Finish frame
231 */
232 virtual void finishFrame() = 0;
233
234 /**
235 * @return vendor
236 */
237 virtual const string getVendor() = 0;
238
239 /**
240 * @return renderer
241 */
242 virtual const string getRenderer() = 0;
243
244 /**
245 * @return shader version e.g. gl2, gl3 or gles2
246 */
247 virtual const string getShaderVersion() = 0;
248
249 /**
250 * @return if renderer is supporting multi threaded rendering
251 */
253
254 /**
255 * Checks if buffer objects is available
256 * @return buffer objects availability
257 */
258 virtual bool isBufferObjectsAvailable() = 0;
259
260 /**
261 * Checks if depth texture is available
262 * @return depth texture is available
263 */
264 virtual bool isDepthTextureAvailable() = 0;
265
266 /**
267 * @return requires program attribute location
268 */
270
271 /**
272 * @return is supporting integer program attributes
273 */
275
276 /**
277 * @return if specular mapping is supported
278 */
279 virtual bool isSpecularMappingAvailable() = 0;
280
281 /**
282 * @return if normal mapping is supported
283 */
284 virtual bool isNormalMappingAvailable() = 0;
285
286 /**
287 * Checks if instanced rendering is available
288 * @return instance rendering availability
289 */
291
292 /**
293 * @return if PBR lighting is supported
294 */
295 virtual bool isPBRAvailable() = 0;
296
297 /**
298 * @return if compute shaders are available
299 */
300 virtual bool isComputeShaderAvailable() = 0;
301
302 /**
303 * @return if OpenGL+CL is available
304 */
305 virtual bool isGLCLAvailable() = 0;
306
307 /**
308 * @return Returns if renderer is using short indices, otherwise it uses int indices
309 */
310 virtual bool isUsingShortIndices() = 0;
311
312 /**
313 * @return If deferred shading is available
314 */
315 virtual bool isDeferredShadingAvailable() = 0;
316
317 /**
318 * @return number of texture units
319 */
320 virtual int32_t getTextureUnits() = 0;
321
322 /**
323 * @return viewport width
324 */
325 inline int32_t getViewPortWidth() {
326 return viewPortWidth;
327 }
328
329 /**
330 * @return viewport height
331 */
332 inline int32_t getViewPortHeight() {
333 return viewPortHeight;
334 }
335
336 /**
337 * Loads a shader
338 * @param type type
339 * @param pathName path name
340 * @param fileName file name
341 * @param definitions preprocessor definitions
342 * @param functions included functions
343 * @return shader handle
344 */
345 virtual int32_t loadShader(int32_t type, const string& pathName, const string& fileName, const string& definitions = string(), const string& functions = string()) = 0;
346
347 /**
348 * Use shader program
349 * @param contextIdx context index
350 * @param programId programId
351 */
352 virtual void useProgram(int contextIdx, int32_t programId) = 0;
353
354 /**
355 * Creates a shader program
356 * @param type type
357 * @return int
358 */
359 virtual int32_t createProgram(int type) = 0;
360
361 /**
362 * Attaches a shader to a program
363 * @param programId program id
364 * @param shaderId shader id
365 */
366 virtual void attachShaderToProgram(int32_t programId, int32_t shaderId) = 0;
367
368 /**
369 * Links attached shaders to a program
370 * @param programId program id
371 * @return success
372 */
373 virtual bool linkProgram(int32_t programId) = 0;
374
375 /**
376 * Returns location of given uniform variable
377 * @param programId program id
378 * @param name uniform name
379 * @return
380 */
381 virtual int32_t getProgramUniformLocation(int32_t programId, const string& name) = 0;
382
383 /**
384 * Set up a integer uniform value
385 * @param contextIdx context index
386 * @param uniformId uniform id
387 * @param value value
388 */
389 virtual void setProgramUniformInteger(int contextIdx, int32_t uniformId, int32_t value) = 0;
390
391 /**
392 * Set up a float uniform value
393 * @param contextIdx context index
394 * @param uniformId uniform id
395 * @param value value
396 */
397 virtual void setProgramUniformFloat(int contextIdx, int32_t uniformId, float value) = 0;
398
399 /**
400 * Set up a float matrix 3x3 uniform value
401 * @param contextIdx context index
402 * @param uniformId uniform id
403 * @param value value
404 */
405 virtual void setProgramUniformFloatMatrix3x3(int contextIdx, int32_t uniformId, const array<float, 9>& value) = 0;
406
407 /**
408 * Set up a float matrix 4x4 uniform value
409 * @param contextIdx context index
410 * @param uniformId uniform id
411 * @param value value
412 */
413 virtual void setProgramUniformFloatMatrix4x4(int contextIdx, int32_t uniformId, const array<float, 16>& value) = 0;
414
415 /**
416 * Set up a float matrices 4x4 uniform values
417 * @param contextIdx context index
418 * @param uniformId uniform id
419 * @param count count
420 * @param data data
421 */
422 virtual void setProgramUniformFloatMatrices4x4(int contextIdx, int32_t uniformId, int32_t count, FloatBuffer* data) = 0;
423
424 /**
425 * Set up a float vec4 uniform value
426 * @param contextIdx context index
427 * @param uniformId uniform id
428 * @param data data
429 */
430 virtual void setProgramUniformFloatVec4(int contextIdx, int32_t uniformId, const array<float, 4>& data) = 0;
431
432 /**
433 * Set up a float vec3 uniform value
434 * @param contextIdx context index
435 * @param uniformId uniform id
436 * @param data data
437 */
438 virtual void setProgramUniformFloatVec3(int contextIdx, int32_t uniformId, const array<float, 3>& data) = 0;
439
440 /**
441 * Set up a float vec2 uniform value
442 * @param contextIdx context index
443 * @param uniformId uniform id
444 * @param data data
445 */
446 virtual void setProgramUniformFloatVec2(int contextIdx, int32_t uniformId, const array<float, 2>& data) = 0;
447
448 /**
449 * Bind attribute to a input location
450 * @param programId program id
451 * @param location location
452 * @param name attribute name
453 */
454 virtual void setProgramAttributeLocation(int32_t programId, int32_t location, const string& name) = 0;
455
456 /**
457 * Get effect pass
458 * @return effect pass
459 */
460 inline int32_t getEffectPass() {
461 return effectPass;
462 }
463
464 /**
465 * Set effect pass
466 * @param effectPass effect pass
467 */
468 inline void setEffectPass(int32_t effectPass) {
469 this->effectPass = effectPass;
470 }
471
472 /**
473 * Get shader prefix
474 * @return shader prefix
475 */
476 inline const string& getShaderPrefix() {
477 return shaderPrefix;
478 }
479
480 /**
481 * Set shader prefix
482 * @param shaderPrefix shader prefix
483 */
484 inline void setShaderPrefix(const string& shaderPrefix) {
485 this->shaderPrefix = shaderPrefix;
486 }
487
488 /**
489 * Get current lighting model
490 * @param contextIdx context index
491 * @return lighting, see LIGHTING_*
492 */
493 inline int32_t getLighting(int contextIdx) {
494 auto& rendererContext = rendererContexts[contextIdx];
495 return rendererContext.lighting;
496 }
497
498 /**
499 * Set current lighting model
500 * @param contextIdx context index
501 * @param lighting lighting, see LIGHTING_*
502 */
503 inline void setLighting(int contextIdx, int32_t lighting) {
504 auto& rendererContext = rendererContexts[contextIdx];
505 rendererContext.lighting = lighting;
506 }
507
508 /**
509 * @return camera position
510 */
512 return cameraPosition;
513 }
514
515 /**
516 * Set up viewport parameter
517 * @param width width
518 * @param height height
519 */
520 virtual void setViewPort(int32_t width, int32_t height) = 0;
521
522 /**
523 * Update viewport
524 */
525 virtual void updateViewPort() = 0;
526
527 /**
528 * @return projection matrix
529 */
531 return projectionMatrix;
532 }
533
534 /**
535 * Update projection matrix event
536 * @param contextIdx context index
537 */
538 virtual void onUpdateProjectionMatrix(int contextIdx) = 0;
539
540 /**
541 * @return camera matrix
542 */
544 return cameraMatrix;
545 }
546
547 /**
548 * Update camera matrix event
549 * @param contextIdx context index
550 */
551 virtual void onUpdateCameraMatrix(int contextIdx) = 0;
552
553 /**
554 * @return model view matrix or in some cases the model matrix
555 */
557 return modelViewMatrix;
558 }
559
560 /**
561 * Update model view matrix event
562 * @param contextIdx context index
563 */
564 virtual void onUpdateModelViewMatrix(int contextIdx) = 0;
565
566 /**
567 * @return view port matrix
568 */
570 return viewportMatrix;
571 }
572
573 /**
574 * Get texture matrix
575 * @param contextIdx context index
576 * @return texture matrix
577 */
578 inline Matrix2D3x3& getTextureMatrix(int contextIdx) {
579 auto& rendererContext = rendererContexts[contextIdx];
580 return rendererContext.textureMatrix;
581 }
582
583 /**
584 * Update texture matrix for active texture unit event
585 * @param contextIdx context index
586 */
587 virtual void onUpdateTextureMatrix(int contextIdx) = 0;
588
589 /**
590 * Set up clear color
591 * @param red red
592 * @param green green
593 * @param blue blue
594 * @param alpha alpha
595 */
596 virtual void setClearColor(float red, float green, float blue, float alpha) = 0;
597
598 /**
599 * Enable culling
600 * @param contextIdx context index
601 */
602 virtual void enableCulling(int contextIdx) = 0;
603
604 /**
605 * Disable culling
606 * @param contextIdx context index
607 */
608 virtual void disableCulling(int contextIdx) = 0;
609
610 /**
611 * Set up clock wise or counter clock wise faces as front face
612 * @param contextIdx context index
613 * @param frontFace frontFace
614 */
615 virtual void setFrontFace(int contextIdx, int32_t frontFace) = 0;
616
617 /**
618 * Sets up which face will be culled
619 * @param cullFace cull face
620 */
621 virtual void setCullFace(int32_t cullFace) = 0;
622
623 /**
624 * Enables blending
625 */
626 virtual void enableBlending() = 0;
627
628 /**
629 * Enable blending with c = a + b
630 */
631 virtual void enableAdditionBlending() = 0;
632
633 /**
634 * Disables blending
635 */
636 virtual void disableBlending() = 0;
637
638 /**
639 * Enable depth buffer writing
640 */
641 virtual void enableDepthBufferWriting() = 0;
642
643 /**
644 * Disable depth buffer writing
645 */
646 virtual void disableDepthBufferWriting() = 0;
647
648 /**
649 * Disable depth buffer test
650 */
651 virtual void disableDepthBufferTest() = 0;
652
653 /**
654 * Enable depth buffer test
655 */
656 virtual void enableDepthBufferTest() = 0;
657
658 /**
659 * Set up depth function
660 * @param depthFunction depth function
661 */
662 virtual void setDepthFunction(int32_t depthFunction) = 0;
663
664 /**
665 * Set up GL rendering colormask
666 * @param red red
667 * @param green green
668 * @param blue blue
669 * @param alpha alpha
670 */
671 virtual void setColorMask(bool red, bool green, bool blue, bool alpha) = 0;
672
673 /**
674 * Clear render buffer with given mask
675 * @param mask mask
676 */
677 virtual void clear(int32_t mask) = 0;
678
679 /**
680 * Creates a texture
681 * @return texture id
682 */
683 virtual int32_t createTexture() = 0;
684
685 /**
686 * Creates a depth buffer texture
687 * @param width width
688 * @param height height
689 * @oaram cubeMapTextureId cube map texture id
690 * @param cubeMapTextureIndex cube map texture index
691 * @return depth texture id
692 */
693 virtual int32_t createDepthBufferTexture(int32_t width, int32_t height, int32_t cubeMapTextureId, int32_t cubeMapTextureIndex) = 0;
694
695 /**
696 * Creates a color buffer texture
697 * @param width width
698 * @param height height
699 * @oaram cubeMapTextureId cube map texture id
700 * @param cubeMapTextureIndex cube map texture index
701 * @return color buffer texture id
702 */
703 virtual int32_t createColorBufferTexture(int32_t width, int32_t height, int32_t cubeMapTextureId, int32_t cubeMapTextureIndex) = 0;
704
705 /**
706 * Creates a geometry buffer geometry texture
707 * @param width width
708 * @param height height
709 * @return geometry buffer geometry texture id
710 */
711 virtual int32_t createGBufferGeometryTexture(int32_t width, int32_t height) = 0;
712
713 /**
714 * Creates a geometry buffer color RGBA texture
715 * @param width width
716 * @param height height
717 * @return geometry buffer color RGBA texture id
718 */
719 virtual int32_t createGBufferColorTexture(int32_t width, int32_t height) = 0;
720
721 /**
722 * Uploads texture data to current bound texture
723 * @param contextIdx context index
724 * @param texture texture
725 */
726 virtual void uploadTexture(int contextIdx, Texture* texture) = 0;
727
728 /**
729 * Uploads cube map texture data to current bound texture
730 * @param contextIdx context index
731 * @param textureLeft texture left
732 * @param textureRight texture right
733 * @param textureTop texture top
734 * @param textureBottom texture bottom
735 * @param textureFront texture front
736 * @param textureBack texture back
737 */
738 virtual void uploadCubeMapTexture(int contextIdx, Texture* textureLeft, Texture* textureRight, Texture* textureTop, Texture* textureBottom, Texture* textureFront, Texture* textureBack) = 0;
739
740 /**
741 * Create cube map texture from frame buffers
742 * @param contextIdx context index
743 * @param width width
744 * @param height height
745 * @return texture id
746 */
747 virtual int32_t createCubeMapTexture(int contextIdx, int32_t width, int32_t height) = 0;
748
749 /**
750 * Resizes a depth texture
751 * @param textureId texture id
752 * @param width width
753 * @param height height
754 */
755 virtual void resizeDepthBufferTexture(int32_t textureId, int32_t width, int32_t height) = 0;
756
757 /**
758 * Resize color buffer texture
759 * @param textureId texture id
760 * @param width width
761 * @param height height
762 */
763 virtual void resizeColorBufferTexture(int32_t textureId, int32_t width, int32_t height) = 0;
764
765 /**
766 * Resizes a geometry buffer geometry texture
767 * @param textureId texture id
768 * @param width width
769 * @param height height
770 * @return geometry buffer geometry texture id
771 */
772 virtual void resizeGBufferGeometryTexture(int32_t textureId, int32_t width, int32_t height) = 0;
773
774 /**
775 * Resizes a geometry buffer color RGBA texture
776 * @param textureId texture id
777 * @param width width
778 * @param height height
779 * @return geometry buffer color RGBA texture id
780 */
781 virtual void resizeGBufferColorTexture(int32_t textureId, int32_t width, int32_t height) = 0;
782
783 /**
784 * Binds a texture with given id or unbinds when using ID_NONE
785 * @param contextIdx context index
786 * @param textureId textureId
787 */
788 virtual void bindTexture(int contextIdx, int32_t textureId) = 0;
789
790 /**
791 * Binds a cube map texture with given id or unbinds when using ID_NONE
792 * @param contextIdx context index
793 * @param textureId textureId
794 */
795 virtual void bindCubeMapTexture(int contextIdx, int32_t textureId) = 0;
796
797 /**
798 * On bind texture event
799 * @param contextIdx context index
800 * @param textureId textureId
801 */
802 virtual void onBindTexture(int contextIdx, int32_t textureId) = 0;
803
804 /**
805 * Dispose a texture
806 * @param textureId texture id
807 */
808 virtual void disposeTexture(int32_t textureId) = 0;
809
810 /**
811 * Creates a frame buffer object with depth texture attached
812 * @param depthBufferTextureId depth buffer texture id
813 * @param colorBufferTextureId color buffer texture id
814 * @param cubeMapTextureId cube map texture id
815 * @param cubeMapTextureIndex cube map texture index
816 * @return frame buffer object id
817 */
818 virtual int32_t createFramebufferObject(int32_t depthBufferTextureId, int32_t colorBufferTextureId, int32_t cubeMapTextureId = 0, int32_t cubeMapTextureIndex = 0) = 0;
819
820 /**
821 * Creates a geometry frame buffer object
822 * @param depthBufferTextureId depth buffer texture id
823 * @param geometryBufferTextureId1 geometry texture id 1
824 * @param geometryBufferTextureId2 geometry texture id 2
825 * @param geometryBufferTextureId3 geometry texture id 3
826 * @param colorBufferTextureId1 color buffer texture id 1
827 * @param colorBufferTextureId2 color buffer texture id 2
828 * @param colorBufferTextureId3 color buffer texture id 3
829 * @param colorBufferTextureId4 color buffer texture id 4
830 * @param colorBufferTextureId5 color buffer texture id 5
831 * @return frame buffer object id
832 */
834 int32_t depthBufferTextureId,
835 int32_t geometryBufferTextureId1,
836 int32_t geometryBufferTextureId2,
837 int32_t geometryBufferTextureId3,
838 int32_t colorBufferTextureId1,
839 int32_t colorBufferTextureId2,
840 int32_t colorBufferTextureId3,
841 int32_t colorBufferTextureId4,
842 int32_t colorBufferTextureId5
843 ) = 0;
844
845 /**
846 * Enables a framebuffer to be rendered
847 * @param frameBufferId frameBufferId
848 */
849 virtual void bindFrameBuffer(int32_t frameBufferId) = 0;
850
851 /**
852 * Disposes a frame buffer object
853 * @param frameBufferId frame buffer id
854 */
855 virtual void disposeFrameBufferObject(int32_t frameBufferId) = 0;
856
857 /**
858 * Generate buffer objects for vertex data and such
859 * @param buffers buffers
860 * @param useGPUMemory use GPU memory
861 * @param shared shared between different threads
862 * @return ids
863 */
864 virtual vector<int32_t> createBufferObjects(int32_t buffers, bool useGPUMemory, bool shared) = 0;
865
866 /**
867 * Uploads buffer data to buffer object
868 * @param contextIdx context index
869 * @param bufferObjectId buffer object id
870 * @param size size
871 * @param data data
872 */
873 virtual void uploadBufferObject(int contextIdx, int32_t bufferObjectId, int32_t size, FloatBuffer* data) = 0;
874
875 /**
876 * Uploads buffer data to buffer object
877 * @param contextIdx context index
878 * @param bufferObjectId buffer object id
879 * @param size size
880 * @param data data
881 */
882 virtual void uploadBufferObject(int contextIdx, int32_t bufferObjectId, int32_t size, IntBuffer* data) = 0;
883
884 /**
885 * Uploads buffer data to buffer object
886 * @param contextIdx context index
887 * @param bufferObjectId buffer object id
888 * @param size size
889 * @param data data
890 */
891 virtual void uploadBufferObject(int contextIdx, int32_t bufferObjectId, int32_t size, ShortBuffer* data) = 0;
892
893 /**
894 * Uploads buffer data to buffer object
895 * @param contextIdx context index
896 * @param bufferObjectId buffer object id
897 * @param size size
898 * @param data data
899 */
900 virtual void uploadIndicesBufferObject(int contextIdx, int32_t bufferObjectId, int32_t size, ShortBuffer* data) = 0;
901
902 /**
903 * Uploads buffer data to buffer object
904 * @param contextIdx context index
905 * @param bufferObjectId buffer object id
906 * @param size size
907 * @param data data
908 */
909 virtual void uploadIndicesBufferObject(int contextIdx, int32_t bufferObjectId, int32_t size, IntBuffer* data) = 0;
910
911 /**
912 * Bind indices buffer object
913 * @param contextIdx context index
914 * @param bufferObjectId buffer object id
915 */
916 virtual void bindIndicesBufferObject(int contextIdx, int32_t bufferObjectId) = 0;
917
918 /**
919 * Bind texture coordinates buffer object
920 * @param contextIdx context index
921 * @param bufferObjectId buffer object id
922 */
923 virtual void bindTextureCoordinatesBufferObject(int contextIdx, int32_t bufferObjectId) = 0;
924
925 /**
926 * Bind vertices buffer object
927 * @param contextIdx context index
928 * @param bufferObjectId buffer object id
929 */
930 virtual void bindVerticesBufferObject(int contextIdx, int32_t bufferObjectId) = 0;
931
932 /**
933 * Bind normals buffer object
934 * @param contextIdx context index
935 * @param bufferObjectId buffer object id
936 */
937 virtual void bindNormalsBufferObject(int contextIdx, int32_t bufferObjectId) = 0;
938
939 /**
940 * Bind colors buffer object
941 * @param contextIdx context index
942 * @param bufferObjectId buffer object id
943 */
944 virtual void bindColorsBufferObject(int contextIdx, int32_t bufferObjectId) = 0;
945
946 /**
947 * Bind tangents buffer object
948 * @param contextIdx context index
949 * @param bufferObjectId buffer object id
950 */
951 virtual void bindTangentsBufferObject(int contextIdx, int32_t bufferObjectId) = 0;
952
953 /**
954 * Bind bitangents buffer object
955 * @param contextIdx context index
956 * @param bufferObjectId buffer object id
957 */
958 virtual void bindBitangentsBufferObject(int contextIdx, int32_t bufferObjectId) = 0;
959
960 /**
961 * Bind model matrices buffer object
962 * @param contextIdx context index
963 * @param bufferObjectId buffer object id
964 */
965 virtual void bindModelMatricesBufferObject(int contextIdx, int32_t bufferObjectId) = 0;
966
967 /**
968 * Bind effect color muls buffer object
969 * @param contextIdx context index
970 * @param bufferObjectId buffer object id
971 * @param divisor divisor
972 */
973 virtual void bindEffectColorMulsBufferObject(int contextIdx, int32_t bufferObjectId, int32_t divisor) = 0;
974
975 /**
976 * Bind effect color adds buffer object
977 * @param contextIdx context index
978 * @param bufferObjectId buffer object id
979 * @param divisor divisor
980 */
981 virtual void bindEffectColorAddsBufferObject(int contextIdx, int32_t bufferObjectId, int32_t divisor) = 0;
982
983 /**
984 * Bind origins buffer object
985 * @param contextIdx context index
986 * @param bufferObjectId buffer object id
987 */
988 virtual void bindOriginsBufferObject(int contextIdx, int32_t bufferObjectId) = 0;
989
990 /**
991 * Bind texture and sprite indices buffer object
992 * @param contextIdx context index
993 * @param bufferObjectId buffer object id
994 */
995 virtual void bindTextureSpriteIndicesBufferObject(int contextIdx, int32_t bufferObjectId) = 0;
996
997 /**
998 * Bind point sizes buffer object
999 * @param contextIdx context index
1000 * @param bufferObjectId buffer object id
1001 */
1002 virtual void bindPointSizesBufferObject(int contextIdx, int32_t bufferObjectId) = 0;
1003
1004 /**
1005 * Bind sprite sheet dimension buffer object
1006 * @param contextIdx context index
1007 * @param bufferObjectId buffer object id
1008 */
1009 virtual void bindSpriteSheetDimensionBufferObject(int contextIdx, int32_t bufferObjectId) = 0;
1010
1011 /**
1012 * Draw instanced indexed triangles from buffer objects
1013 * @param contextIdx context index
1014 * @param triangles triangles
1015 * @param trianglesOffset triangles offset
1016 * @param instances instances
1017 */
1018 virtual void drawInstancedIndexedTrianglesFromBufferObjects(int contextIdx, int32_t triangles, int32_t trianglesOffset, int32_t instances) = 0;
1019
1020 /**
1021 * Draw indexed triangles from buffer objects
1022 * @param contextIdx context index
1023 * @param triangles triangles
1024 * @param trianglesOffset triangles offset
1025 */
1026 virtual void drawIndexedTrianglesFromBufferObjects(int contextIdx, int32_t triangles, int32_t trianglesOffset) = 0;
1027
1028 /**
1029 * Draw instanced triangles from buffer objects
1030 * @param contextIdx context index
1031 * @param triangles triangles
1032 * @param trianglesOffset triangles offset
1033 * @param instances instances
1034 */
1035 virtual void drawInstancedTrianglesFromBufferObjects(int contextIdx, int32_t triangles, int32_t trianglesOffset, int32_t instances) = 0;
1036
1037 /**
1038 * Draw triangles from buffer objects
1039 * @param contextIdx context index
1040 * @param triangles triangles
1041 * @param trianglesOffset triangles offset
1042 */
1043 virtual void drawTrianglesFromBufferObjects(int contextIdx, int32_t triangles, int32_t trianglesOffset) = 0;
1044
1045 /**
1046 * Draw points from buffer objects
1047 * @param contextIdx context index
1048 * @param points points
1049 * @param pointsOffset points offset
1050 */
1051 virtual void drawPointsFromBufferObjects(int contextIdx, int32_t points, int32_t pointsOffset) = 0;
1052
1053 /**
1054 * Set line width
1055 * @param lineWidth line width
1056 */
1057 virtual void setLineWidth(float lineWidth) = 0;
1058
1059 /**
1060 * Draw lines from buffer objects
1061 * @param contextIdx context index
1062 * @param points points
1063 * @param pointsOffset points offset
1064 */
1065 virtual void drawLinesFromBufferObjects(int contextIdx, int32_t points, int32_t pointsOffset) = 0;
1066
1067 /**
1068 * Unbind buffer objects
1069 * @param contextIdx context index
1070 */
1071 virtual void unbindBufferObjects(int contextIdx) = 0;
1072
1073 /**
1074 * Disposes a frame buffer object
1075 * @param bufferObjectIds frame buffer id
1076 */
1077 virtual void disposeBufferObjects(vector<int32_t>& bufferObjectIds) = 0;
1078
1079 /**
1080 * Get texture unit
1081 * @param contextIdx context index
1082 * @return active texture unit
1083 */
1084 virtual int32_t getTextureUnit(int contextIdx) = 0;
1085
1086 /**
1087 * Sets up texture unit
1088 * @param contextIdx context index
1089 * @param textureUnit texture unit
1090 */
1091 virtual void setTextureUnit(int contextIdx, int32_t textureUnit) = 0;
1092
1093 /**
1094 * Get light
1095 * @param contextIdx context index
1096 * @param lightId light id
1097 * @return light
1098 */
1099 inline Renderer_Light& getLight(int contextIdx, int32_t lightIdx) {
1100 auto& rendererContext = rendererContexts[contextIdx];
1101 return rendererContext.lights[lightIdx];
1102 }
1103
1104 /**
1105 * Update light
1106 * @param contextIdx context index
1107 * @param lightId light id
1108 */
1109 virtual void onUpdateLight(int contextIdx, int32_t lightId) = 0;
1110
1111 /**
1112 * Get effect color mul
1113 * @param context
1114 * @return effect color mul
1115 */
1116 inline array<float, 4>& getEffectColorMul(int contextIdx) {
1117 auto& rendererContext = rendererContexts[contextIdx];
1118 return rendererContext.effectColorMul;
1119 }
1120
1121 /**
1122 * Get effect color add
1123 * @param context
1124 * @return effect color add
1125 */
1126 inline array<float, 4>& getEffectColorAdd(int contextIdx) {
1127 auto& rendererContext = rendererContexts[contextIdx];
1128 return rendererContext.effectColorAdd;
1129 }
1130
1131 /**
1132 * Update material
1133 * @param contextIdx context index
1134 */
1135 virtual void onUpdateEffect(int contextIdx) = 0;
1136
1137 /**
1138 * Get specular material
1139 * @param contextIdx context index
1140 * @return material
1141 */
1143 auto& rendererContext = rendererContexts[contextIdx];
1144 return rendererContext.specularMaterial;
1145 }
1146
1147 /**
1148 * Get PBR material
1149 * @param contextIdx context index
1150 * @return material
1151 */
1152 inline Renderer_PBRMaterial& getPBRMaterial(int contextIdx) {
1153 auto& rendererContext = rendererContexts[contextIdx];
1154 return rendererContext.pbrMaterial;
1155 }
1156
1157 /**
1158 * On update material
1159 * @param contextIdx context index
1160 */
1161 virtual void onUpdateMaterial(int contextIdx) = 0;
1162
1163 /**
1164 * Get shader
1165 * @param contextIdx context index
1166 */
1167 inline const string& getShader(int contextIdx) {
1168 auto& rendererContext = rendererContexts[contextIdx];
1169 return rendererContext.shader;
1170 }
1171
1172 /**
1173 * Set shader
1174 * @param contextIdx context index
1175 * @param id shader id
1176 * @param parameters parameters
1177 */
1178 inline void setShader(int contextIdx, const string& id) {
1179 auto& rendererContext = rendererContexts[contextIdx];
1180 rendererContext.shader = id;
1181 }
1182
1183 /**
1184 * On update shader
1185 * @param contextIdx context index
1186 */
1187 virtual void onUpdateShader(int contextIdx) = 0;
1188
1189 /**
1190 * Get shader parameters
1191 * @param contextIdx context index
1192 * @return shader parameters
1193 */
1194 inline const EntityShaderParameters& getShaderParameters(int contextIdx) {
1195 auto& rendererContext = rendererContexts[contextIdx];
1196 return rendererContext.shaderParameters;
1197 }
1198
1199 /**
1200 * Set shader parameters
1201 * @param contextIdx context index
1202 * @param parameters shader parameters
1203 */
1204 inline void setShaderParameters(int contextIdx, const EntityShaderParameters& parameters) {
1205 auto& rendererContext = rendererContexts[contextIdx];
1206 rendererContext.shaderParameters = parameters;
1207 }
1208
1209 /**
1210 * On update shader parameters
1211 * @param contextIdx context index
1212 */
1213 virtual void onUpdateShaderParameters(int contextIdx) = 0;
1214
1215 /**
1216 * Reads a pixel depth
1217 * @param x x
1218 * @param y y
1219 * @return depth 0.0f..1.0f
1220 */
1221 virtual float readPixelDepth(int32_t x, int32_t y) = 0;
1222
1223 /**
1224 * Read pixels
1225 * @param x x
1226 * @param y y
1227 * @param width width
1228 * @param height height
1229 * @return byte buffer
1230 */
1231 virtual ByteBuffer* readPixels(int32_t x, int32_t y, int32_t width, int32_t height) = 0;
1232
1233 /**
1234 * Dispatch compute
1235 * @param contextIdx context index
1236 * @param numGroupsX num groups x
1237 * @param numGroupsY num groups y
1238 * @param numGroupsZ num groups z
1239 */
1240 virtual void dispatchCompute(int contextIdx, int32_t numGroupsX, int32_t numGroupsY, int32_t numGroupsZ) = 0;
1241
1242 /**
1243 * Memory barrier
1244 */
1245 virtual void memoryBarrier() = 0;
1246
1247 /**
1248 * Upload skinning buffer object
1249 * @param contextIdx context index
1250 * @param bufferObjectId buffer object id
1251 * @param size size
1252 * @param data data
1253 */
1254 virtual void uploadSkinningBufferObject(int contextIdx, int32_t bufferObjectId, int32_t size, FloatBuffer* data) = 0;
1255
1256 /**
1257 * Upload skinning buffer object
1258 * @param contextIdx context index
1259 * @param bufferObjectId buffer object id
1260 * @param size size
1261 * @param data data
1262 */
1263 virtual void uploadSkinningBufferObject(int contextIdx, int32_t bufferObjectId, int32_t size, IntBuffer* data) = 0;
1264
1265 /**
1266 * Bind skinning vertices buffer object
1267 * @param contextIdx context index
1268 * @param bufferObjectId buffer object id
1269 */
1270 virtual void bindSkinningVerticesBufferObject(int contextIdx, int32_t bufferObjectId) = 0;
1271
1272 /**
1273 * Bind skinning normal buffer object
1274 * @param contextIdx context index
1275 * @param bufferObjectId buffer object id
1276 */
1277 virtual void bindSkinningNormalsBufferObject(int contextIdx, int32_t bufferObjectId) = 0;
1278
1279 /**
1280 * Bind skinning vertex joints buffer object
1281 * @param contextIdx context index
1282 * @param bufferObjectId buffer object id
1283 */
1284 virtual void bindSkinningVertexJointsBufferObject(int contextIdx, int32_t bufferObjectId) = 0;
1285
1286 /**
1287 * Bind skinning vertex joint indices buffer object
1288 * @param contextIdx context index
1289 * @param bufferObjectId buffer object id
1290 */
1291 virtual void bindSkinningVertexJointIdxsBufferObject(int contextIdx, int32_t bufferObjectId) = 0;
1292
1293 /**
1294 * Bind skinning vertex joint weights buffer object
1295 * @param contextIdx context index
1296 * @param bufferObjectId buffer object id
1297 */
1298 virtual void bindSkinningVertexJointWeightsBufferObject(int contextIdx, int32_t bufferObjectId) = 0;
1299
1300 /**
1301 * Bind skinning vertices result buffer object
1302 * @param contextIdx context index
1303 * @param bufferObjectId buffer object id
1304 */
1305 virtual void bindSkinningVerticesResultBufferObject(int contextIdx, int32_t bufferObjectId) = 0;
1306
1307 /**
1308 * Bind skinning normals result buffer object
1309 * @param contextIdx context index
1310 * @param bufferObjectId buffer object id
1311 */
1312 virtual void bindSkinningNormalsResultBufferObject(int contextIdx, int32_t bufferObjectId) = 0;
1313
1314 /**
1315 * Bind skinning matrices result buffer object
1316 * @param contextIdx context index
1317 * @param bufferObjectId buffer object id
1318 */
1319 virtual void bindSkinningMatricesBufferObject(int contextIdx, int32_t bufferObjectId) = 0;
1320
1321 /**
1322 * Get mask max value
1323 * @return mask max value
1324 */
1325 inline float getMaskMaxValue(int contextIdx) {
1326 auto& rendererContext = rendererContexts[contextIdx];
1327 return rendererContext.maskMaxValue;
1328 }
1329
1330 /**
1331 * Set mask max value
1332 * @param contextIdx context index
1333 * @param maskMinValue mask mask value
1334 */
1335 inline void setMaskMaxValue(int contextIdx, float maskMaxValue) {
1336 auto& rendererContext = rendererContexts[contextIdx];
1337 rendererContext.maskMaxValue = maskMaxValue;
1338 }
1339
1340 /**
1341 * Get environment mapping cube map position
1342 * @param contextIdx context index
1343 * @return environment mapping position
1344 */
1345 inline array<float, 3>& getEnvironmentMappingCubeMapPosition(int contextIdx) {
1346 auto& rendererContext = rendererContexts[contextIdx];
1347 return rendererContext.environmentMappingCubeMapPosition;
1348 }
1349
1350 /**
1351 * Set environment mapping cube map position
1352 * @param contextIdx context index
1353 * @param position position
1354 */
1355 inline void setEnvironmentMappingCubeMapPosition(int contextIdx, array<float, 3>& position) {
1356 auto& rendererContext = rendererContexts[contextIdx];
1357 rendererContext.environmentMappingCubeMapPosition = position;
1358 }
1359
1360 /**
1361 * Set up renderer for GUI rendering
1362 */
1363 virtual void initGuiMode() = 0;
1364
1365 /**
1366 * Set up renderer for 3d rendering
1367 */
1368 virtual void doneGuiMode() = 0;
1369
1370 /**
1371 * Enable/Disable v-sync
1372 * @param vSync V-sync enabled
1373 */
1374 virtual void setVSync(bool vSync) = 0;
1375
1376 /**
1377 * @return renderer statistics
1378 */
1380
1381 /**
1382 * Generate mip map for atlas texture currently
1383 * @param id id
1384 * @param texture texture
1385 * @param level level
1386 * @param atlasBorderSize atlasBorderSize
1387 */
1388 Texture* generateMipMap(const string& id, Texture* texture, int32_t level, int32_t atlasBorderSize);
1389
1390};
TDME2 engine entity shader parameters.
virtual void setTextureUnit(int contextIdx, int32_t textureUnit)=0
Sets up texture unit.
virtual void bindCubeMapTexture(int contextIdx, int32_t textureId)=0
Binds a cube map texture with given id or unbinds when using ID_NONE.
virtual void enableAdditionBlending()=0
Enable blending with c = a + b.
virtual void uploadIndicesBufferObject(int contextIdx, int32_t bufferObjectId, int32_t size, IntBuffer *data)=0
Uploads buffer data to buffer object.
virtual int32_t loadShader(int32_t type, const string &pathName, const string &fileName, const string &definitions=string(), const string &functions=string())=0
Loads a shader.
virtual void uploadIndicesBufferObject(int contextIdx, int32_t bufferObjectId, int32_t size, ShortBuffer *data)=0
Uploads buffer data to buffer object.
virtual void resizeDepthBufferTexture(int32_t textureId, int32_t width, int32_t height)=0
Resizes a depth texture.
virtual void onUpdateProjectionMatrix(int contextIdx)=0
Update projection matrix event.
virtual void initializeFrame()=0
Pre Frame Initialization.
virtual void setViewPort(int32_t width, int32_t height)=0
Set up viewport parameter.
virtual void drawInstancedTrianglesFromBufferObjects(int contextIdx, int32_t triangles, int32_t trianglesOffset, int32_t instances)=0
Draw instanced triangles from buffer objects.
Renderer_SpecularMaterial & getSpecularMaterial(int contextIdx)
Get specular material.
Definition: Renderer.h:1142
virtual void memoryBarrier()=0
Memory barrier.
virtual void bindEffectColorMulsBufferObject(int contextIdx, int32_t bufferObjectId, int32_t divisor)=0
Bind effect color muls buffer object.
array< float, 3 > & getEnvironmentMappingCubeMapPosition(int contextIdx)
Get environment mapping cube map position.
Definition: Renderer.h:1345
virtual void bindSkinningVertexJointIdxsBufferObject(int contextIdx, int32_t bufferObjectId)=0
Bind skinning vertex joint indices buffer object.
array< float, 4 > & getEffectColorMul(int contextIdx)
Get effect color mul.
Definition: Renderer.h:1116
virtual void setProgramUniformFloatVec4(int contextIdx, int32_t uniformId, const array< float, 4 > &data)=0
Set up a float vec4 uniform value.
virtual void drawInstancedIndexedTrianglesFromBufferObjects(int contextIdx, int32_t triangles, int32_t trianglesOffset, int32_t instances)=0
Draw instanced indexed triangles from buffer objects.
virtual void enableCulling(int contextIdx)=0
Enable culling.
virtual void enableDepthBufferTest()=0
Enable depth buffer test.
virtual void drawLinesFromBufferObjects(int contextIdx, int32_t points, int32_t pointsOffset)=0
Draw lines from buffer objects.
void setShaderPrefix(const string &shaderPrefix)
Set shader prefix.
Definition: Renderer.h:484
virtual void onUpdateCameraMatrix(int contextIdx)=0
Update camera matrix event.
virtual void uploadSkinningBufferObject(int contextIdx, int32_t bufferObjectId, int32_t size, IntBuffer *data)=0
Upload skinning buffer object.
virtual void bindTangentsBufferObject(int contextIdx, int32_t bufferObjectId)=0
Bind tangents buffer object.
virtual void onUpdateShader(int contextIdx)=0
On update shader.
virtual void finishFrame()=0
Finish frame.
virtual void uploadBufferObject(int contextIdx, int32_t bufferObjectId, int32_t size, IntBuffer *data)=0
Uploads buffer data to buffer object.
virtual void enableDepthBufferWriting()=0
Enable depth buffer writing.
virtual void resizeColorBufferTexture(int32_t textureId, int32_t width, int32_t height)=0
Resize color buffer texture.
Texture * generateMipMap(const string &id, Texture *texture, int32_t level, int32_t atlasBorderSize)
Generate mip map for atlas texture currently.
Definition: Renderer.cpp:69
virtual int32_t createColorBufferTexture(int32_t width, int32_t height, int32_t cubeMapTextureId, int32_t cubeMapTextureIndex)=0
Creates a color buffer texture.
virtual void unbindBufferObjects(int contextIdx)=0
Unbind buffer objects.
virtual void setClearColor(float red, float green, float blue, float alpha)=0
Set up clear color.
virtual int32_t createProgram(int type)=0
Creates a shader program.
virtual void setProgramUniformFloatVec2(int contextIdx, int32_t uniformId, const array< float, 2 > &data)=0
Set up a float vec2 uniform value.
virtual void onUpdateLight(int contextIdx, int32_t lightId)=0
Update light.
virtual void setCullFace(int32_t cullFace)=0
Sets up which face will be culled.
virtual void disposeBufferObjects(vector< int32_t > &bufferObjectIds)=0
Disposes a frame buffer object.
virtual void bindSkinningMatricesBufferObject(int contextIdx, int32_t bufferObjectId)=0
Bind skinning matrices result buffer object.
virtual void uploadBufferObject(int contextIdx, int32_t bufferObjectId, int32_t size, ShortBuffer *data)=0
Uploads buffer data to buffer object.
virtual void updateViewPort()=0
Update viewport.
virtual void bindSpriteSheetDimensionBufferObject(int contextIdx, int32_t bufferObjectId)=0
Bind sprite sheet dimension buffer object.
virtual int32_t getTextureUnit(int contextIdx)=0
Get texture unit.
virtual void setProgramAttributeLocation(int32_t programId, int32_t location, const string &name)=0
Bind attribute to a input location.
virtual void bindSkinningVerticesResultBufferObject(int contextIdx, int32_t bufferObjectId)=0
Bind skinning vertices result buffer object.
virtual void enableBlending()=0
Enables blending.
virtual void disableBlending()=0
Disables blending.
virtual void drawPointsFromBufferObjects(int contextIdx, int32_t points, int32_t pointsOffset)=0
Draw points from buffer objects.
virtual ByteBuffer * readPixels(int32_t x, int32_t y, int32_t width, int32_t height)=0
Read pixels.
virtual void initGuiMode()=0
Set up renderer for GUI rendering.
float getMaskMaxValue(int contextIdx)
Get mask max value.
Definition: Renderer.h:1325
virtual int32_t createTexture()=0
Creates a texture.
vector< Renderer_Context > rendererContexts
Definition: Renderer.h:188
virtual void setProgramUniformInteger(int contextIdx, int32_t uniformId, int32_t value)=0
Set up a integer uniform value.
int32_t getEffectPass()
Get effect pass.
Definition: Renderer.h:460
virtual void onBindTexture(int contextIdx, int32_t textureId)=0
On bind texture event.
virtual int32_t createFramebufferObject(int32_t depthBufferTextureId, int32_t colorBufferTextureId, int32_t cubeMapTextureId=0, int32_t cubeMapTextureIndex=0)=0
Creates a frame buffer object with depth texture attached.
virtual bool isBufferObjectsAvailable()=0
Checks if buffer objects is available.
virtual void setColorMask(bool red, bool green, bool blue, bool alpha)=0
Set up GL rendering colormask.
virtual void onUpdateTextureMatrix(int contextIdx)=0
Update texture matrix for active texture unit event.
void setMaskMaxValue(int contextIdx, float maskMaxValue)
Set mask max value.
Definition: Renderer.h:1335
virtual bool linkProgram(int32_t programId)=0
Links attached shaders to a program.
virtual void bindTexture(int contextIdx, int32_t textureId)=0
Binds a texture with given id or unbinds when using ID_NONE.
virtual void setProgramUniformFloatMatrix3x3(int contextIdx, int32_t uniformId, const array< float, 9 > &value)=0
Set up a float matrix 3x3 uniform value.
virtual void bindSkinningNormalsBufferObject(int contextIdx, int32_t bufferObjectId)=0
Bind skinning normal buffer object.
virtual void bindModelMatricesBufferObject(int contextIdx, int32_t bufferObjectId)=0
Bind model matrices buffer object.
virtual int32_t createDepthBufferTexture(int32_t width, int32_t height, int32_t cubeMapTextureId, int32_t cubeMapTextureIndex)=0
Creates a depth buffer texture.
virtual void disableDepthBufferWriting()=0
Disable depth buffer writing.
const string & getShader(int contextIdx)
Get shader.
Definition: Renderer.h:1167
virtual void bindIndicesBufferObject(int contextIdx, int32_t bufferObjectId)=0
Bind indices buffer object.
void setLighting(int contextIdx, int32_t lighting)
Set current lighting model.
Definition: Renderer.h:503
virtual void attachShaderToProgram(int32_t programId, int32_t shaderId)=0
Attaches a shader to a program.
virtual void setFrontFace(int contextIdx, int32_t frontFace)=0
Set up clock wise or counter clock wise faces as front face.
virtual void bindSkinningNormalsResultBufferObject(int contextIdx, int32_t bufferObjectId)=0
Bind skinning normals result buffer object.
virtual bool isInstancedRenderingAvailable()=0
Checks if instanced rendering is available.
void setShader(int contextIdx, const string &id)
Set shader.
Definition: Renderer.h:1178
virtual int32_t createGBufferGeometryTexture(int32_t width, int32_t height)=0
Creates a geometry buffer geometry texture.
virtual void setProgramUniformFloatMatrix4x4(int contextIdx, int32_t uniformId, const array< float, 16 > &value)=0
Set up a float matrix 4x4 uniform value.
virtual int32_t getProgramUniformLocation(int32_t programId, const string &name)=0
Returns location of given uniform variable.
virtual void drawTrianglesFromBufferObjects(int contextIdx, int32_t triangles, int32_t trianglesOffset)=0
Draw triangles from buffer objects.
Renderer_PBRMaterial & getPBRMaterial(int contextIdx)
Get PBR material.
Definition: Renderer.h:1152
const string & getShaderPrefix()
Get shader prefix.
Definition: Renderer.h:476
virtual void onUpdateModelViewMatrix(int contextIdx)=0
Update model view matrix event.
virtual void bindBitangentsBufferObject(int contextIdx, int32_t bufferObjectId)=0
Bind bitangents buffer object.
virtual void initialize()=0
Initialize renderer.
virtual void disposeTexture(int32_t textureId)=0
Dispose a texture.
virtual void onUpdateShaderParameters(int contextIdx)=0
On update shader parameters.
virtual void bindSkinningVertexJointsBufferObject(int contextIdx, int32_t bufferObjectId)=0
Bind skinning vertex joints buffer object.
virtual int32_t createCubeMapTexture(int contextIdx, int32_t width, int32_t height)=0
Create cube map texture from frame buffers.
const EntityShaderParameters & getShaderParameters(int contextIdx)
Get shader parameters.
Definition: Renderer.h:1194
virtual void resizeGBufferGeometryTexture(int32_t textureId, int32_t width, int32_t height)=0
Resizes a geometry buffer geometry texture.
virtual void bindFrameBuffer(int32_t frameBufferId)=0
Enables a framebuffer to be rendered.
virtual void uploadTexture(int contextIdx, Texture *texture)=0
Uploads texture data to current bound texture.
virtual void bindSkinningVerticesBufferObject(int contextIdx, int32_t bufferObjectId)=0
Bind skinning vertices buffer object.
virtual void uploadSkinningBufferObject(int contextIdx, int32_t bufferObjectId, int32_t size, FloatBuffer *data)=0
Upload skinning buffer object.
virtual void clear(int32_t mask)=0
Clear render buffer with given mask.
int32_t getLighting(int contextIdx)
Get current lighting model.
Definition: Renderer.h:493
virtual bool isDepthTextureAvailable()=0
Checks if depth texture is available.
virtual void disableCulling(int contextIdx)=0
Disable culling.
virtual void disposeFrameBufferObject(int32_t frameBufferId)=0
Disposes a frame buffer object.
virtual void drawIndexedTrianglesFromBufferObjects(int contextIdx, int32_t triangles, int32_t trianglesOffset)=0
Draw indexed triangles from buffer objects.
virtual void dispatchCompute(int contextIdx, int32_t numGroupsX, int32_t numGroupsY, int32_t numGroupsZ)=0
Dispatch compute.
virtual const Renderer_Statistics getStatistics()=0
virtual void bindSkinningVertexJointWeightsBufferObject(int contextIdx, int32_t bufferObjectId)=0
Bind skinning vertex joint weights buffer object.
void setEffectPass(int32_t effectPass)
Set effect pass.
Definition: Renderer.h:468
virtual void doneGuiMode()=0
Set up renderer for 3d rendering.
Matrix2D3x3 & getTextureMatrix(int contextIdx)
Get texture matrix.
Definition: Renderer.h:578
virtual float readPixelDepth(int32_t x, int32_t y)=0
Reads a pixel depth.
virtual void uploadBufferObject(int contextIdx, int32_t bufferObjectId, int32_t size, FloatBuffer *data)=0
Uploads buffer data to buffer object.
virtual void bindTextureCoordinatesBufferObject(int contextIdx, int32_t bufferObjectId)=0
Bind texture coordinates buffer object.
virtual void setDepthFunction(int32_t depthFunction)=0
Set up depth function.
virtual void onUpdateEffect(int contextIdx)=0
Update material.
virtual vector< int32_t > createBufferObjects(int32_t buffers, bool useGPUMemory, bool shared)=0
Generate buffer objects for vertex data and such.
void setEnvironmentMappingCubeMapPosition(int contextIdx, array< float, 3 > &position)
Set environment mapping cube map position.
Definition: Renderer.h:1355
virtual void setProgramUniformFloatMatrices4x4(int contextIdx, int32_t uniformId, int32_t count, FloatBuffer *data)=0
Set up a float matrices 4x4 uniform values.
virtual void uploadCubeMapTexture(int contextIdx, Texture *textureLeft, Texture *textureRight, Texture *textureTop, Texture *textureBottom, Texture *textureFront, Texture *textureBack)=0
Uploads cube map texture data to current bound texture.
virtual void onUpdateMaterial(int contextIdx)=0
On update material.
virtual void bindPointSizesBufferObject(int contextIdx, int32_t bufferObjectId)=0
Bind point sizes buffer object.
virtual int32_t createGBufferColorTexture(int32_t width, int32_t height)=0
Creates a geometry buffer color RGBA texture.
virtual void bindColorsBufferObject(int contextIdx, int32_t bufferObjectId)=0
Bind colors buffer object.
virtual bool initializeWindowSystemRendererContext(GLFWwindow *glfwWindow)=0
Initialize window system renderer context.
virtual void setLineWidth(float lineWidth)=0
Set line width.
virtual void setVSync(bool vSync)=0
Enable/Disable v-sync.
Renderer_Light & getLight(int contextIdx, int32_t lightIdx)
Get light.
Definition: Renderer.h:1099
virtual void useProgram(int contextIdx, int32_t programId)=0
Use shader program.
array< float, 4 > & getEffectColorAdd(int contextIdx)
Get effect color add.
Definition: Renderer.h:1126
virtual void setProgramUniformFloatVec3(int contextIdx, int32_t uniformId, const array< float, 3 > &data)=0
Set up a float vec3 uniform value.
virtual void bindVerticesBufferObject(int contextIdx, int32_t bufferObjectId)=0
Bind vertices buffer object.
void setShaderParameters(int contextIdx, const EntityShaderParameters &parameters)
Set shader parameters.
Definition: Renderer.h:1204
virtual 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)=0
Creates a geometry frame buffer object.
virtual void bindTextureSpriteIndicesBufferObject(int contextIdx, int32_t bufferObjectId)=0
Bind texture and sprite indices buffer object.
virtual bool prepareWindowSystemRendererContext(int tryIdx)=0
Prepare window system renderer context.
virtual void disableDepthBufferTest()=0
Disable depth buffer test.
virtual void bindEffectColorAddsBufferObject(int contextIdx, int32_t bufferObjectId, int32_t divisor)=0
Bind effect color adds buffer object.
virtual void resizeGBufferColorTexture(int32_t textureId, int32_t width, int32_t height)=0
Resizes a geometry buffer color RGBA texture.
virtual void bindNormalsBufferObject(int contextIdx, int32_t bufferObjectId)=0
Bind normals buffer object.
virtual void bindOriginsBufferObject(int contextIdx, int32_t bufferObjectId)=0
Bind origins buffer object.
virtual void setProgramUniformFloat(int contextIdx, int32_t uniformId, float value)=0
Set up a float uniform value.
3x3 2D Matrix class
Definition: Matrix2D3x3.h:22
4x4 3D Matrix class
Definition: Matrix4x4.h:24
3D vector 3 class
Definition: Vector3.h:22
Byte buffer class.
Definition: ByteBuffer.h:24
Float buffer class.
Definition: FloatBuffer.h:18
Integer buffer class.
Definition: IntBuffer.h:14
Short buffer class.
Definition: ShortBuffer.h:14