-
Notifications
You must be signed in to change notification settings - Fork 18
/
egl.c
401 lines (317 loc) · 11.8 KB
/
egl.c
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
/*
* Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <EGL/egl.h>
#include <EGL/eglext.h>
#include <GL/gl.h>
#include "utils.h"
#include "egl.h"
/* XXX khronos eglext.h does not yet have EGL_DRM_MASTER_FD_EXT */
#if !defined(EGL_DRM_MASTER_FD_EXT)
#define EGL_DRM_MASTER_FD_EXT 0x333C
#endif
/*
* The EGL_EXT_device_base extension (or EGL_EXT_device_enumeration
* and EGL_EXT_device_query) let you enumerate the GPUs in the system.
*/
EGLDeviceEXT GetEglDevice(void)
{
EGLint numDevices, i;
EGLDeviceEXT *devices = NULL;
EGLDeviceEXT device = EGL_NO_DEVICE_EXT;
EGLBoolean ret;
const char *clientExtensionString =
eglQueryString(EGL_NO_DISPLAY, EGL_EXTENSIONS);
if (!ExtensionIsSupported(clientExtensionString,
"EGL_EXT_device_base") &&
(!ExtensionIsSupported(clientExtensionString,
"EGL_EXT_device_enumeration") ||
!ExtensionIsSupported(clientExtensionString,
"EGL_EXT_device_query"))) {
Fatal("EGL_EXT_device base extensions not found.\n");
}
/* Query how many devices are present. */
ret = pEglQueryDevicesEXT(0, NULL, &numDevices);
if (!ret) {
Fatal("Failed to query EGL devices.\n");
}
if (numDevices < 1) {
Fatal("No EGL devices found.\n");
}
/* Allocate memory to store that many EGLDeviceEXTs. */
devices = calloc(numDevices, sizeof(EGLDeviceEXT));
if (devices == NULL) {
Fatal("Memory allocation failure.\n");
}
/* Query the EGLDeviceEXTs. */
ret = pEglQueryDevicesEXT(numDevices, devices, &numDevices);
if (!ret) {
Fatal("Failed to query EGL devices.\n");
}
/*
* Select which EGLDeviceEXT to use.
*
* The EGL_EXT_device_query extension defines the functions:
*
* eglQueryDeviceAttribEXT()
* eglQueryDeviceStringEXT()
*
* as ways to generically query properties of EGLDeviceEXTs, and
* separate EGL extensions define EGLDeviceEXT attributes that can
* be queried through those functions. E.g.,
*
* - EGL_NV_device_cuda lets you query the CUDA device ID
* (EGL_CUDA_DEVICE_NV of an EGLDeviceEXT.
*
* - EGL_EXT_device_drm lets you query the DRM device file
* (EGL_DRM_DEVICE_FILE_EXT) of an EGLDeviceEXT.
*
* Future extensions could define other EGLDeviceEXT attributes
* such as PCI BusID.
*
* For now, just choose the first device that supports EGL_EXT_device_drm.
*/
for (i = 0; i < numDevices; i++) {
const char *deviceExtensionString =
pEglQueryDeviceStringEXT(devices[i], EGL_EXTENSIONS);
if (ExtensionIsSupported(deviceExtensionString, "EGL_EXT_device_drm")) {
device = devices[i];
break;
}
}
free(devices);
if (device == EGL_NO_DEVICE_EXT) {
Fatal("No EGL_EXT_device_drm-capable EGL device found.\n");
}
return device;
}
/*
* Use the EGL_EXT_device_drm extension to query the DRM device file
* corresponding to the EGLDeviceEXT.
*/
int GetDrmFd(EGLDeviceEXT device)
{
const char *deviceExtensionString =
pEglQueryDeviceStringEXT(device, EGL_EXTENSIONS);
const char *drmDeviceFile;
int fd;
if (!ExtensionIsSupported(deviceExtensionString, "EGL_EXT_device_drm")) {
Fatal("EGL_EXT_device_drm extension not found.\n");
}
drmDeviceFile = pEglQueryDeviceStringEXT(device, EGL_DRM_DEVICE_FILE_EXT);
if (drmDeviceFile == NULL) {
Fatal("No DRM device file found for EGL device.\n");
}
fd = open(drmDeviceFile, O_RDWR, 0);
if (fd < 0) {
Fatal("Unable to open DRM device file.\n");
}
return fd;
}
/*
* Create an EGLDisplay from the given EGL device.
*/
EGLDisplay GetEglDisplay(EGLDeviceEXT device, int drmFd)
{
EGLDisplay eglDpy;
const char *clientExtensionString =
eglQueryString(EGL_NO_DISPLAY, EGL_EXTENSIONS);
const char *deviceExtensionString =
pEglQueryDeviceStringEXT(device, EGL_EXTENSIONS);
/*
* Provide the DRM fd when creating the EGLDisplay, so that the
* EGL implementation can make any necessary DRM calls using the
* same fd as the application.
*/
EGLint attribs[] = {
EGL_DRM_MASTER_FD_EXT,
drmFd,
EGL_NONE
};
/*
* eglGetPlatformDisplayEXT requires EGL client extension
* EGL_EXT_platform_base.
*/
if (!ExtensionIsSupported(clientExtensionString, "EGL_EXT_platform_base")) {
Fatal("EGL_EXT_platform_base not found.\n");
}
/*
* EGL_EXT_platform_device is required to pass
* EGL_PLATFORM_DEVICE_EXT to eglGetPlatformDisplayEXT().
*/
if (!ExtensionIsSupported(clientExtensionString,
"EGL_EXT_platform_device")) {
Fatal("EGL_EXT_platform_device not found.\n");
}
/*
* Providing a DRM fd during EGLDisplay creation requires
* EGL_EXT_device_drm.
*/
if (!ExtensionIsSupported(deviceExtensionString, "EGL_EXT_device_drm")) {
Fatal("EGL_EXT_device_drm not found.\n");
}
/* Get an EGLDisplay from the EGLDeviceEXT. */
eglDpy = pEglGetPlatformDisplayEXT(EGL_PLATFORM_DEVICE_EXT,
(void*)device, attribs);
if (eglDpy == EGL_NO_DISPLAY) {
Fatal("Failed to get EGLDisplay from EGLDevice.");
}
if (!eglInitialize(eglDpy, NULL, NULL)) {
Fatal("Failed to initialize EGLDisplay.");
}
return eglDpy;
}
/*
* Set up EGL to present to a DRM KMS plane through an EGLStream.
*/
EGLSurface SetUpEgl(EGLDisplay eglDpy, uint32_t planeID, int width, int height)
{
EGLint configAttribs[] = {
EGL_SURFACE_TYPE, EGL_STREAM_BIT_KHR,
EGL_RENDERABLE_TYPE, EGL_OPENGL_BIT,
EGL_RED_SIZE, 1,
EGL_GREEN_SIZE, 1,
EGL_BLUE_SIZE, 1,
EGL_ALPHA_SIZE, 0,
EGL_DEPTH_SIZE, 1,
EGL_NONE,
};
EGLint contextAttribs[] = { EGL_NONE };
EGLAttrib layerAttribs[] = {
EGL_DRM_PLANE_EXT,
planeID,
EGL_NONE,
};
EGLint streamAttribs[] = { EGL_NONE };
EGLint surfaceAttribs[] = {
EGL_WIDTH, width,
EGL_HEIGHT, height,
EGL_NONE
};
EGLConfig eglConfig;
EGLContext eglContext;
EGLint n = 0;
EGLBoolean ret;
EGLOutputLayerEXT eglLayer;
EGLStreamKHR eglStream;
EGLSurface eglSurface;
const char *extensionString = eglQueryString(eglDpy, EGL_EXTENSIONS);
/*
* EGL_EXT_output_base and EGL_EXT_output_drm are needed to find
* the EGLOutputLayer for the DRM KMS plane.
*/
if (!ExtensionIsSupported(extensionString, "EGL_EXT_output_base")) {
Fatal("EGL_EXT_output_base not found.\n");
}
if (!ExtensionIsSupported(extensionString, "EGL_EXT_output_drm")) {
Fatal("EGL_EXT_output_drm not found.\n");
}
/*
* EGL_KHR_stream, EGL_EXT_stream_consumer_egloutput, and
* EGL_KHR_stream_producer_eglsurface are needed to create an
* EGLStream connecting an EGLSurface and an EGLOutputLayer.
*/
if (!ExtensionIsSupported(extensionString, "EGL_KHR_stream")) {
Fatal("EGL_KHR_stream not found.\n");
}
if (!ExtensionIsSupported(extensionString,
"EGL_EXT_stream_consumer_egloutput")) {
Fatal("EGL_EXT_stream_consumer_egloutput not found.\n");
}
if (!ExtensionIsSupported(extensionString,
"EGL_KHR_stream_producer_eglsurface")) {
Fatal("EGL_KHR_stream_producer_eglsurface not found.\n");
}
/* Bind full OpenGL as EGL's client API. */
eglBindAPI(EGL_OPENGL_API);
/* Find a suitable EGL config. */
ret = eglChooseConfig(eglDpy, configAttribs, &eglConfig, 1, &n);
if (!ret || !n) {
Fatal("eglChooseConfig() failed.\n");
}
/* Create an EGL context using the EGL config. */
eglContext =
eglCreateContext(eglDpy, eglConfig, EGL_NO_CONTEXT, contextAttribs);
if (eglContext == NULL) {
Fatal("eglCreateContext() failed.\n");
}
/* Find the EGLOutputLayer that corresponds to the DRM KMS plane. */
ret = pEglGetOutputLayersEXT(eglDpy, layerAttribs, &eglLayer, 1, &n);
if (!ret || !n) {
Fatal("Unable to get EGLOutputLayer for plane 0x%08x\n", planeID);
}
/* Create an EGLStream. */
eglStream = pEglCreateStreamKHR(eglDpy, streamAttribs);
if (eglStream == EGL_NO_STREAM_KHR) {
Fatal("Unable to create stream.\n");
}
/* Set the EGLOutputLayer as the consumer of the EGLStream. */
ret = pEglStreamConsumerOutputEXT(eglDpy, eglStream, eglLayer);
if (!ret) {
Fatal("Unable to create EGLOutput stream consumer.\n");
}
/*
* EGL_KHR_stream defines that normally stream consumers need to
* explicitly retrieve frames from the stream. That may be useful
* when we attempt to better integrate
* EGL_EXT_stream_consumer_egloutput with DRM atomic KMS requests.
* But, EGL_EXT_stream_consumer_egloutput defines that by default:
*
* On success, <layer> is bound to <stream>, <stream> is placed
* in the EGL_STREAM_STATE_CONNECTING_KHR state, and EGL_TRUE is
* returned. Initially, no changes occur to the image displayed
* on <layer>. When the <stream> enters state
* EGL_STREAM_STATE_NEW_FRAME_AVAILABLE_KHR, <layer> will begin
* displaying frames, without further action required on the
* application's part, as they become available, taking into
* account any timestamps, swap intervals, or other limitations
* imposed by the stream or producer attributes.
*
* So, eglSwapBuffers() (to produce new frames) is sufficient for
* the frames to be displayed. That behavior can be altered with
* the EGL_EXT_stream_acquire_mode extension.
*/
/*
* Create an EGLSurface as the producer of the EGLStream. Once
* the stream's producer and consumer are defined, the stream is
* ready to use. eglSwapBuffers() calls for the EGLSurface will
* deliver to the stream's consumer, i.e., the DRM KMS plane
* corresponding to the EGLOutputLayer.
*/
eglSurface = pEglCreateStreamProducerSurfaceKHR(eglDpy, eglConfig,
eglStream, surfaceAttribs);
if (eglSurface == EGL_NO_SURFACE) {
Fatal("Unable to create EGLSurface stream producer.\n");
}
/*
* Make current to the EGLSurface, so that OpenGL rendering is
* directed to it.
*/
ret = eglMakeCurrent(eglDpy, eglSurface, eglSurface, eglContext);
if (!ret) {
Fatal("Unable to make context and surface current.\n");
}
return eglSurface;
}