TDME2 1.9.121
GeometryBuffer.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
5
7
8/**
9 * Geometry buffer class
10 * @author Andreas Drewke
11 * @version $Id$
12 */
14{
15private:
16 int32_t width;
17 int32_t height;
28public:
29 /**
30 * Public constructor
31 * @param width width
32 * @param height height
33 */
34 GeometryBuffer(int32_t width, int32_t height);
35
36 /**
37 * @return width
38 */
39 inline int32_t getWidth() {
40 return width;
41 }
42
43 /**
44 * @return height
45 */
46 inline int32_t getHeight() {
47 return height;
48 }
49
50 /**
51 * @return frame buffer id
52 */
53 inline int32_t getId() {
54 return frameBufferId;
55 }
56
57 /**
58 * @return depth buffer texture
59 */
60 inline int32_t getDepthBufferTextureId() {
62 }
63
64 /**
65 * @return geometry buffer texture 1
66 */
67 inline int32_t getGeometryBufferTextureId1() {
69 }
70
71 /**
72 * @return geometry buffer texture 2
73 */
74 inline int32_t getGeometryBufferTextureId2() {
76 }
77
78 /**
79 * @return geometry buffer texture 2
80 */
81 inline int32_t getGeometryBufferTextureId3() {
83 }
84
85 /**
86 * @return color buffer texture 1
87 */
88 inline int32_t getColorBufferTextureId1() {
90 }
91
92 /**
93 * @return color buffer texture 2
94 */
95 inline int32_t getColorBufferTextureId2() {
97 }
98
99 /**
100 * @return color buffer texture 3
101 */
102 inline int32_t getColorBufferTextureId3() {
104 }
105
106 /**
107 * @return color buffer texture 4
108 */
109 inline int32_t getColorBufferTextureId4() {
111 }
112
113 /**
114 * @return color buffer texture 5
115 */
116 inline int32_t getColorBufferTextureId5() {
118 }
119
120 /**
121 * Initialize the geometry buffer
122 */
123 void initialize();
124
125 /**
126 * Resize the geometry buffer
127 * @param width width
128 * @param height height
129 */
130 void reshape(int32_t width, int32_t height);
131
132 /**
133 * Disposes this geometry buffer
134 */
135 void dispose();
136
137 /**
138 * Enables this geometry buffer to be rendered
139 */
141
142 /**
143 * Switches back to non offscreen main frame buffer to be rendered
144 */
145 static void disableGeometryBuffer();
146
147 /**
148 * Render to screen or bound geometry buffer
149 * @engine engine
150 */
151 void renderToScreen(Engine* engine);
152
153};
Engine main class.
Definition: Engine.h:122
Geometry buffer class.
void reshape(int32_t width, int32_t height)
Resize the geometry buffer.
void initialize()
Initialize the geometry buffer.
GeometryBuffer(int32_t width, int32_t height)
Public constructor.
void renderToScreen(Engine *engine)
Render to screen or bound geometry buffer @engine engine.
void dispose()
Disposes this geometry buffer.
void enableGeometryBuffer()
Enables this geometry buffer to be rendered.
static void disableGeometryBuffer()
Switches back to non offscreen main frame buffer to be rendered.