-
Notifications
You must be signed in to change notification settings - Fork 293
Expand file tree
/
Copy pathgraphicsplugin_opengles.cpp
More file actions
433 lines (352 loc) · 18.4 KB
/
graphicsplugin_opengles.cpp
File metadata and controls
433 lines (352 loc) · 18.4 KB
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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
// Copyright (c) 2017-2026 The Khronos Group Inc.
//
// SPDX-License-Identifier: Apache-2.0
#include "pch.h"
#include "common.h"
#include "geometry.h"
#include "graphicsplugin.h"
#include "graphics_plugin_impl_helpers.h"
#include "options.h"
#ifdef XR_USE_GRAPHICS_API_OPENGL_ES
#include "common/gfxwrapper_opengl.h"
#include <common/xr_linear.h>
#define GL(glcmd) \
{ \
GLint err = glGetError(); \
if (err != GL_NO_ERROR) { \
Log::Write(Log::Level::Error, Fmt("GLES error=%d, %s:%d", err, __FUNCTION__, __LINE__)); \
} \
glcmd; \
err = glGetError(); \
if (err != GL_NO_ERROR) { \
Log::Write(Log::Level::Error, Fmt("GLES error=%d, cmd=%s, %s:%d", err, #glcmd, __FUNCTION__, __LINE__)); \
} \
}
namespace {
// The version statement has come on first line.
static const char* VertexShaderGlsl = R"_(#version 320 es
in vec3 VertexPos;
in vec3 VertexColor;
out vec3 PSVertexColor;
uniform mat4 ModelViewProjection;
void main() {
gl_Position = ModelViewProjection * vec4(VertexPos, 1.0);
PSVertexColor = VertexColor;
}
)_";
// The version statement has come on first line.
static const char* FragmentShaderGlsl = R"_(#version 320 es
in lowp vec3 PSVertexColor;
out lowp vec4 FragColor;
void main() {
FragColor = vec4(PSVertexColor, 1);
}
)_";
struct OpenGLESGraphicsPlugin : public IGraphicsPlugin {
OpenGLESGraphicsPlugin(const std::shared_ptr<Options>& options, const std::shared_ptr<IPlatformPlugin> /*unused*/&)
: m_clearColor(options->GetBackgroundClearColor()) {}
OpenGLESGraphicsPlugin(const OpenGLESGraphicsPlugin&) = delete;
OpenGLESGraphicsPlugin& operator=(const OpenGLESGraphicsPlugin&) = delete;
OpenGLESGraphicsPlugin(OpenGLESGraphicsPlugin&&) = delete;
OpenGLESGraphicsPlugin& operator=(OpenGLESGraphicsPlugin&&) = delete;
~OpenGLESGraphicsPlugin() override {
if (m_swapchainFramebuffer != 0) {
glDeleteFramebuffers(1, &m_swapchainFramebuffer);
}
if (m_program != 0) {
glDeleteProgram(m_program);
}
if (m_vao != 0) {
glDeleteVertexArrays(1, &m_vao);
}
if (m_cubeVertexBuffer != 0) {
glDeleteBuffers(1, &m_cubeVertexBuffer);
}
if (m_cubeIndexBuffer != 0) {
glDeleteBuffers(1, &m_cubeIndexBuffer);
}
ksGpuWindow_Destroy(&window);
}
std::vector<std::string> GetInstanceExtensions() const override { return {XR_KHR_OPENGL_ES_ENABLE_EXTENSION_NAME}; }
ksGpuWindow window{};
void DebugMessageCallback(GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar* message) {
(void)source;
(void)type;
(void)id;
(void)severity;
Log::Write(Log::Level::Info, "GLES Debug: " + std::string(message, 0, length));
}
void InitializeDevice(XrInstance instance, XrSystemId systemId) override {
// Extension function must be loaded by name
PFN_xrGetOpenGLESGraphicsRequirementsKHR pfnGetOpenGLESGraphicsRequirementsKHR = nullptr;
CHECK_XRCMD(xrGetInstanceProcAddr(instance, "xrGetOpenGLESGraphicsRequirementsKHR",
reinterpret_cast<PFN_xrVoidFunction*>(&pfnGetOpenGLESGraphicsRequirementsKHR)));
XrGraphicsRequirementsOpenGLESKHR graphicsRequirements{XR_TYPE_GRAPHICS_REQUIREMENTS_OPENGL_ES_KHR};
CHECK_XRCMD(pfnGetOpenGLESGraphicsRequirementsKHR(instance, systemId, &graphicsRequirements));
// Initialize the gl extensions. Note we have to open a window.
ksDriverInstance driverInstance{};
ksGpuQueueInfo queueInfo{};
ksGpuSurfaceColorFormat colorFormat{KS_GPU_SURFACE_COLOR_FORMAT_B8G8R8A8};
ksGpuSurfaceDepthFormat depthFormat{KS_GPU_SURFACE_DEPTH_FORMAT_D24};
ksGpuSampleCount sampleCount{KS_GPU_SAMPLE_COUNT_1};
if (!ksGpuWindow_Create(&window, &driverInstance, &queueInfo, 0, colorFormat, depthFormat, sampleCount, 640, 480, false)) {
THROW("Unable to create GL context");
}
GLint major = 0;
GLint minor = 0;
glGetIntegerv(GL_MAJOR_VERSION, &major);
glGetIntegerv(GL_MINOR_VERSION, &minor);
const XrVersion desiredApiVersion = XR_MAKE_VERSION(major, minor, 0);
if (graphicsRequirements.minApiVersionSupported > desiredApiVersion) {
THROW("Runtime does not support desired Graphics API and/or version");
}
m_contextApiMajorVersion = major;
#if defined(XR_USE_PLATFORM_ANDROID)
m_graphicsBinding.display = window.context.dpy;
m_graphicsBinding.config = (EGLConfig)0;
m_graphicsBinding.context = window.context.ctx;
#endif
glEnable(GL_DEBUG_OUTPUT);
glDebugMessageCallback(
[](GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar* message,
const void* userParam) {
((OpenGLESGraphicsPlugin*)userParam)->DebugMessageCallback(source, type, id, severity, length, message);
},
this);
InitializeResources();
}
void InitializeResources() {
glGenFramebuffers(1, &m_swapchainFramebuffer);
GLuint vertexShader = glCreateShader(GL_VERTEX_SHADER);
glShaderSource(vertexShader, 1, &VertexShaderGlsl, nullptr);
glCompileShader(vertexShader);
CheckShader(vertexShader);
GLuint fragmentShader = glCreateShader(GL_FRAGMENT_SHADER);
glShaderSource(fragmentShader, 1, &FragmentShaderGlsl, nullptr);
glCompileShader(fragmentShader);
CheckShader(fragmentShader);
m_program = glCreateProgram();
glAttachShader(m_program, vertexShader);
glAttachShader(m_program, fragmentShader);
glLinkProgram(m_program);
CheckProgram(m_program);
glDeleteShader(vertexShader);
glDeleteShader(fragmentShader);
m_modelViewProjectionUniformLocation = glGetUniformLocation(m_program, "ModelViewProjection");
m_vertexAttribCoords = glGetAttribLocation(m_program, "VertexPos");
m_vertexAttribColor = glGetAttribLocation(m_program, "VertexColor");
glGenBuffers(1, &m_cubeVertexBuffer);
glBindBuffer(GL_ARRAY_BUFFER, m_cubeVertexBuffer);
glBufferData(GL_ARRAY_BUFFER, sizeof(Geometry::c_cubeVertices), Geometry::c_cubeVertices, GL_STATIC_DRAW);
glGenBuffers(1, &m_cubeIndexBuffer);
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, m_cubeIndexBuffer);
glBufferData(GL_ELEMENT_ARRAY_BUFFER, sizeof(Geometry::c_cubeIndices), Geometry::c_cubeIndices, GL_STATIC_DRAW);
glGenVertexArrays(1, &m_vao);
glBindVertexArray(m_vao);
glEnableVertexAttribArray(m_vertexAttribCoords);
glEnableVertexAttribArray(m_vertexAttribColor);
glBindBuffer(GL_ARRAY_BUFFER, m_cubeVertexBuffer);
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, m_cubeIndexBuffer);
glVertexAttribPointer(m_vertexAttribCoords, 3, GL_FLOAT, GL_FALSE, sizeof(Geometry::Vertex), nullptr);
glVertexAttribPointer(m_vertexAttribColor, 3, GL_FLOAT, GL_FALSE, sizeof(Geometry::Vertex),
reinterpret_cast<const void*>(sizeof(XrVector3f)));
}
void CheckShader(GLuint shader) {
GLint r = 0;
glGetShaderiv(shader, GL_COMPILE_STATUS, &r);
if (r == GL_FALSE) {
GLchar msg[4096] = {};
GLsizei length;
glGetShaderInfoLog(shader, sizeof(msg), &length, msg);
THROW(Fmt("Compile shader failed: %s", msg));
}
}
void CheckProgram(GLuint prog) {
GLint r = 0;
glGetProgramiv(prog, GL_LINK_STATUS, &r);
if (r == GL_FALSE) {
GLchar msg[4096] = {};
GLsizei length;
glGetProgramInfoLog(prog, sizeof(msg), &length, msg);
THROW(Fmt("Link program failed: %s", msg));
}
}
// Select the preferred swapchain format from the list of available formats.
int64_t SelectColorSwapchainFormat(bool throwIfNotFound, span<const int64_t> imageFormatArray) const override {
// List of supported color swapchain formats.
// The order of this list does not effect the priority of selecting formats, the runtime list defines that.
return SelectSwapchainFormat( //
throwIfNotFound, imageFormatArray,
{
GL_RGB10_A2,
GL_RGBA16,
GL_RGBA16F,
GL_RGBA32F,
// The two below should only be used as a fallback, as they are linear color formats without enough bits for color
// depth, thus leading to banding.
GL_RGBA8,
GL_SRGB8_ALPHA8,
});
}
int64_t SelectDepthSwapchainFormat(bool throwIfNotFound, span<const int64_t> imageFormatArray) const override {
// List of supported depth swapchain formats.
return SelectSwapchainFormat( //
throwIfNotFound, imageFormatArray,
{
GL_DEPTH24_STENCIL8,
GL_DEPTH_COMPONENT24,
GL_DEPTH_COMPONENT16,
GL_DEPTH_COMPONENT32F,
});
}
const XrBaseInStructure* GetGraphicsBinding() const override {
return reinterpret_cast<const XrBaseInStructure*>(&m_graphicsBinding);
}
struct OpenGLESFallbackDepthTexture {
public:
OpenGLESFallbackDepthTexture() = default;
~OpenGLESFallbackDepthTexture() { Reset(); }
void Reset() {
if (Allocated()) {
GL(glDeleteTextures(1, &m_texture));
}
m_texture = 0;
m_xrImage.image = 0;
}
bool Allocated() const { return m_texture != 0; }
void Allocate(GLuint width, GLuint height, uint32_t arraySize) {
Reset();
const bool isArray = arraySize > 1;
GLenum target = isArray ? GL_TEXTURE_2D_ARRAY : GL_TEXTURE_2D;
GL(glGenTextures(1, &m_texture));
GL(glBindTexture(target, m_texture));
GL(glTexParameteri(target, GL_TEXTURE_MAG_FILTER, GL_NEAREST));
GL(glTexParameteri(target, GL_TEXTURE_MIN_FILTER, GL_NEAREST));
GL(glTexParameteri(target, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE));
GL(glTexParameteri(target, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE));
if (isArray) {
GL(glTexImage3D(target, 0, GL_DEPTH_COMPONENT24, width, height, arraySize, 0, GL_DEPTH_COMPONENT, GL_UNSIGNED_INT,
nullptr));
} else {
GL(glTexImage2D(target, 0, GL_DEPTH_COMPONENT24, width, height, 0, GL_DEPTH_COMPONENT, GL_UNSIGNED_INT, nullptr));
}
m_xrImage.image = m_texture;
}
const XrSwapchainImageOpenGLESKHR& GetTexture() const { return m_xrImage; }
private:
uint32_t m_texture{0};
XrSwapchainImageOpenGLESKHR m_xrImage{XR_TYPE_SWAPCHAIN_IMAGE_OPENGL_ES_KHR, NULL, 0};
};
class OpenGLESSwapchainImageData : public SwapchainImageDataBase<XrSwapchainImageOpenGLESKHR> {
public:
OpenGLESSwapchainImageData(uint32_t capacity, const XrSwapchainCreateInfo& createInfo)
: SwapchainImageDataBase(XR_TYPE_SWAPCHAIN_IMAGE_OPENGL_ES_KHR, capacity, createInfo),
m_internalDepthTextures(capacity) {}
OpenGLESSwapchainImageData(uint32_t capacity, const XrSwapchainCreateInfo& createInfo, XrSwapchain depthSwapchain,
const XrSwapchainCreateInfo& depthCreateInfo)
: SwapchainImageDataBase(XR_TYPE_SWAPCHAIN_IMAGE_OPENGL_ES_KHR, capacity, createInfo, depthSwapchain, depthCreateInfo) {
}
protected:
const XrSwapchainImageOpenGLESKHR& GetFallbackDepthSwapchainImage(uint32_t i) override {
if (!m_internalDepthTextures[i].Allocated()) {
m_internalDepthTextures[i].Allocate(this->Width(), this->Height(), this->ArraySize());
}
return m_internalDepthTextures[i].GetTexture();
}
private:
std::vector<OpenGLESFallbackDepthTexture> m_internalDepthTextures;
};
ISwapchainImageData* AllocateSwapchainImageData(size_t size, const XrSwapchainCreateInfo& swapchainCreateInfo) override {
auto typedResult = std::make_unique<OpenGLESSwapchainImageData>(uint32_t(size), swapchainCreateInfo);
// Cast our derived type to the caller-expected type.
auto ret = static_cast<ISwapchainImageData*>(typedResult.get());
m_swapchainImageDataMap.Adopt(std::move(typedResult));
return ret;
}
inline ISwapchainImageData* AllocateSwapchainImageDataWithDepthSwapchain(
size_t size, const XrSwapchainCreateInfo& colorSwapchainCreateInfo, XrSwapchain depthSwapchain,
const XrSwapchainCreateInfo& depthSwapchainCreateInfo) override {
auto typedResult = std::make_unique<OpenGLESSwapchainImageData>(uint32_t(size), colorSwapchainCreateInfo, depthSwapchain,
depthSwapchainCreateInfo);
// Cast our derived type to the caller-expected type.
auto ret = static_cast<ISwapchainImageData*>(typedResult.get());
m_swapchainImageDataMap.Adopt(std::move(typedResult));
return ret;
}
void RenderView(const XrCompositionLayerProjectionView& layerView, const XrSwapchainImageBaseHeader* swapchainImage,
int64_t colorSwapchainFormat, int64_t depthSwapchainFormat, const std::vector<Cube>& cubes) override {
CHECK(layerView.subImage.imageArrayIndex == 0); // Texture arrays not supported.
UNUSED_PARM(colorSwapchainFormat); // Not used in this function for now.
UNUSED_PARM(depthSwapchainFormat); // Not used in this function for now.
OpenGLESSwapchainImageData* swapchainData;
uint32_t imageIndex;
std::tie(swapchainData, imageIndex) = m_swapchainImageDataMap.GetDataAndIndexFromBasePointer(swapchainImage);
glBindFramebuffer(GL_FRAMEBUFFER, m_swapchainFramebuffer);
const uint32_t colorTexture = reinterpret_cast<const XrSwapchainImageOpenGLESKHR*>(swapchainImage)->image;
const uint32_t depthTexture = swapchainData->GetDepthImageForColorIndex(imageIndex).image;
glViewport(static_cast<GLint>(layerView.subImage.imageRect.offset.x),
static_cast<GLint>(layerView.subImage.imageRect.offset.y),
static_cast<GLsizei>(layerView.subImage.imageRect.extent.width),
static_cast<GLsizei>(layerView.subImage.imageRect.extent.height));
glFrontFace(GL_CW);
glCullFace(GL_BACK);
glEnable(GL_CULL_FACE);
glEnable(GL_DEPTH_TEST);
glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, colorTexture, 0);
glFramebufferTexture2D(GL_FRAMEBUFFER, GL_DEPTH_ATTACHMENT, GL_TEXTURE_2D, depthTexture, 0);
// Clear swapchain and depth buffer.
glClearColor(m_clearColor[0], m_clearColor[1], m_clearColor[2], m_clearColor[3]);
glClearDepthf(1.0f);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT | GL_STENCIL_BUFFER_BIT);
// Set shaders and uniform variables.
glUseProgram(m_program);
const auto& pose = layerView.pose;
XrMatrix4x4f proj;
XrMatrix4x4f_CreateProjectionFov(&proj, GRAPHICS_OPENGL_ES, layerView.fov, 0.05f, 100.0f);
XrMatrix4x4f toView;
XrMatrix4x4f_CreateFromRigidTransform(&toView, &pose);
XrMatrix4x4f view;
XrMatrix4x4f_InvertRigidBody(&view, &toView);
XrMatrix4x4f vp;
XrMatrix4x4f_Multiply(&vp, &proj, &view);
// Set cube primitive data.
glBindVertexArray(m_vao);
// Render each cube
for (const Cube& cube : cubes) {
// Compute the model-view-projection transform and set it..
XrMatrix4x4f model;
XrMatrix4x4f_CreateTranslationRotationScale(&model, &cube.Pose.position, &cube.Pose.orientation, &cube.Scale);
XrMatrix4x4f mvp;
XrMatrix4x4f_Multiply(&mvp, &vp, &model);
glUniformMatrix4fv(m_modelViewProjectionUniformLocation, 1, GL_FALSE, reinterpret_cast<const GLfloat*>(&mvp));
// Draw the cube.
glDrawElements(GL_TRIANGLES, static_cast<GLsizei>(ArraySize(Geometry::c_cubeIndices)), GL_UNSIGNED_SHORT, nullptr);
}
glBindVertexArray(0);
glUseProgram(0);
glBindFramebuffer(GL_FRAMEBUFFER, 0);
}
uint32_t GetSupportedSwapchainSampleCount(const XrViewConfigurationView&) override { return 1; }
void UpdateOptions(const std::shared_ptr<Options>& options) override { m_clearColor = options->GetBackgroundClearColor(); }
private:
#ifdef XR_USE_PLATFORM_ANDROID
XrGraphicsBindingOpenGLESAndroidKHR m_graphicsBinding{XR_TYPE_GRAPHICS_BINDING_OPENGL_ES_ANDROID_KHR};
#endif
SwapchainImageDataMap<OpenGLESSwapchainImageData> m_swapchainImageDataMap;
GLuint m_swapchainFramebuffer{0};
GLuint m_program{0};
GLint m_modelViewProjectionUniformLocation{0};
GLint m_vertexAttribCoords{0};
GLint m_vertexAttribColor{0};
GLuint m_vao{0};
GLuint m_cubeVertexBuffer{0};
GLuint m_cubeIndexBuffer{0};
GLint m_contextApiMajorVersion{0};
std::array<float, 4> m_clearColor;
};
} // namespace
std::shared_ptr<IGraphicsPlugin> CreateGraphicsPlugin_OpenGLES(const std::shared_ptr<Options>& options,
std::shared_ptr<IPlatformPlugin> platformPlugin) {
return std::make_shared<OpenGLESGraphicsPlugin>(options, platformPlugin);
}
#endif