1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
|
/************************************************************************************
Filename : Render_GL_Device.h
Content : RenderDevice implementation header for OpenGL
Created : September 10, 2012
Authors : Andrew Reisse
Copyright : Copyright 2012 Oculus VR, Inc. All Rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
************************************************************************************/
#ifndef OVR_Render_GL_Device_h
#define OVR_Render_GL_Device_h
#include "../Render/Render_Device.h"
#if defined(OVR_OS_WIN32)
#include <Windows.h>
#endif
#if defined(OVR_OS_MAC)
#include <OpenGL/gl.h>
#include <OpenGL/glext.h>
#else
#define GL_GLEXT_PROTOTYPES
#include <GL/gl.h>
#include <GL/glext.h>
#endif
namespace OVR { namespace Render { namespace GL {
class RenderDevice;
class Buffer : public Render::Buffer
{
public:
RenderDevice* Ren;
size_t Size;
GLenum Use;
GLuint GLBuffer;
public:
Buffer(RenderDevice* r) : Ren(r), Size(0), Use(0), GLBuffer(0) {}
~Buffer();
GLuint GetBuffer() { return GLBuffer; }
virtual size_t GetSize() { return Size; }
virtual void* Map(size_t start, size_t size, int flags = 0);
virtual bool Unmap(void *m);
virtual bool Data(int use, const void* buffer, size_t size);
};
class Texture : public Render::Texture
{
public:
RenderDevice* Ren;
GLuint TexId;
int Width, Height;
Texture(RenderDevice* r, int w, int h);
~Texture();
virtual int GetWidth() const { return Width; }
virtual int GetHeight() const { return Height; }
virtual void SetSampleMode(int);
virtual void Set(int slot, ShaderStage stage = Shader_Fragment) const;
};
class Shader : public Render::Shader
{
public:
GLuint GLShader;
Shader(RenderDevice*, ShaderStage st, GLuint s) : Render::Shader(st), GLShader(s) {}
Shader(RenderDevice*, ShaderStage st, const char* src) : Render::Shader(st), GLShader(0)
{
Compile(src);
}
~Shader()
{
if (GLShader)
glDeleteShader(GLShader);
}
bool Compile(const char* src);
GLenum GLStage() const
{
switch (Stage)
{
default: OVR_ASSERT(0); return GL_NONE;
case Shader_Vertex: return GL_VERTEX_SHADER;
case Shader_Fragment: return GL_FRAGMENT_SHADER;
}
}
//void Set(PrimitiveType prim) const;
//void SetUniformBuffer(Render::Buffer* buffers, int i = 0);
};
class ShaderSet : public Render::ShaderSet
{
public:
GLuint Prog;
struct Uniform
{
String Name;
int Location, Size;
int Type; // currently number of floats in vector
};
Array<Uniform> UniformInfo;
int ProjLoc, ViewLoc;
int TexLoc[8];
bool UsesLighting;
int LightingVer;
ShaderSet();
~ShaderSet();
virtual void SetShader(Render::Shader *s)
{
Shaders[s->GetStage()] = s;
Shader* gls = (Shader*)s;
glAttachShader(Prog, gls->GLShader);
if (Shaders[Shader_Vertex] && Shaders[Shader_Fragment])
Link();
}
virtual void UnsetShader(int stage)
{
Shader* gls = (Shader*)(Render::Shader*)Shaders[stage];
if (gls)
glDetachShader(Prog, gls->GLShader);
Shaders[stage] = NULL;
Link();
}
virtual void Set(PrimitiveType prim) const;
// Set a uniform (other than the standard matrices). It is undefined whether the
// uniforms from one shader occupy the same space as those in other shaders
// (unless a buffer is used, then each buffer is independent).
virtual bool SetUniform(const char* name, int n, const float* v);
virtual bool SetUniform4x4f(const char* name, const Matrix4f& m);
bool Link();
};
class RBuffer : public RefCountBase<RBuffer>
{
public:
int Width, Height;
GLuint BufId;
RBuffer(GLenum format, GLint w, GLint h);
~RBuffer();
};
class RenderDevice : public Render::RenderDevice
{
Ptr<Shader> VertexShaders[VShader_Count];
Ptr<Shader> FragShaders[FShader_Count];
Ptr<ShaderFill> DefaultFill;
Matrix4f Proj;
Ptr<Texture> CurRenderTarget;
Array<Ptr<RBuffer> > DepthBuffers;
GLuint CurrentFbo;
const LightingParams* Lighting;
public:
RenderDevice(const RendererParams& p);
virtual void SetRealViewport(const Viewport& vp);
//virtual void SetScissor(int x, int y, int w, int h);
virtual void Clear(float r = 0, float g = 0, float b = 0, float a = 1, float depth = 1);
virtual void Rect(float left, float top, float right, float bottom) { OVR_UNUSED4(left,top,right,bottom); }
virtual void BeginRendering();
virtual void SetDepthMode(bool enable, bool write, CompareFunc func = Compare_Less);
virtual void SetWorldUniforms(const Matrix4f& proj);
RBuffer* GetDepthBuffer(int w, int h, int ms);
virtual void SetRenderTarget(Render::Texture* color,
Render::Texture* depth = NULL, Render::Texture* stencil = NULL);
virtual void SetLighting(const LightingParams* lt);
virtual void Render(const Matrix4f& matrix, Model* model);
virtual void Render(const Fill* fill, Render::Buffer* vertices, Render::Buffer* indices,
const Matrix4f& matrix, int offset, int count, PrimitiveType prim = Prim_Triangles);
virtual void RenderWithAlpha(const Fill* fill, Render::Buffer* vertices, Render::Buffer* indices,
const Matrix4f& matrix, int offset, int count, PrimitiveType prim = Prim_Triangles);
virtual Buffer* CreateBuffer();
virtual Texture* CreateTexture(int format, int width, int height, const void* data, int mipcount=1);
virtual ShaderSet* CreateShaderSet() { return new ShaderSet; }
virtual Fill *CreateSimpleFill(int flags = Fill::F_Solid);
virtual Shader *LoadBuiltinShader(ShaderStage stage, int shader);
void SetTexture(Render::ShaderStage, int slot, const Texture* t);
virtual bool SetFullscreen(DisplayMode fullscreen);
};
}}}
#endif
|