Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mesa
Path: blob/21.2-virgl/src/egl/drivers/dri2/egl_dri2.h
4570 views
1
/*
2
* Copyright © 2011 Intel Corporation
3
*
4
* Permission is hereby granted, free of charge, to any person obtaining a
5
* copy of this software and associated documentation files (the "Software"),
6
* to deal in the Software without restriction, including without limitation
7
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
8
* and/or sell copies of the Software, and to permit persons to whom the
9
* Software is furnished to do so, subject to the following conditions:
10
*
11
* The above copyright notice and this permission notice (including the next
12
* paragraph) shall be included in all copies or substantial portions of the
13
* Software.
14
*
15
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22
* DEALINGS IN THE SOFTWARE.
23
*
24
* Authors:
25
* Kristian Høgsberg <[email protected]>
26
*/
27
28
#ifndef EGL_DRI2_INCLUDED
29
#define EGL_DRI2_INCLUDED
30
31
#include <stdbool.h>
32
#include <stdint.h>
33
34
#ifdef HAVE_X11_PLATFORM
35
#include <xcb/xcb.h>
36
#include <xcb/dri2.h>
37
#include <xcb/xfixes.h>
38
#include <X11/Xlib-xcb.h>
39
40
#ifdef HAVE_DRI3
41
#include "loader_dri3_helper.h"
42
#endif
43
#endif
44
45
#ifdef HAVE_WAYLAND_PLATFORM
46
/* forward declarations to avoid pulling wayland headers everywhere */
47
struct wl_egl_window;
48
struct wl_event_queue;
49
struct wl_callback;
50
struct wl_display;
51
struct wl_drm;
52
struct wl_registry;
53
struct wl_shm;
54
struct wl_surface;
55
struct zwp_linux_dmabuf_v1;
56
#endif
57
58
#include <GL/gl.h>
59
#include <GL/internal/dri_interface.h>
60
61
#ifdef HAVE_DRM_PLATFORM
62
#include <gbm_driint.h>
63
#endif
64
65
#ifdef HAVE_ANDROID_PLATFORM
66
#define LOG_TAG "EGL-DRI2"
67
68
#include <hardware/gralloc.h>
69
70
#if ANDROID_API_LEVEL >= 26
71
#include <vndk/window.h>
72
#else
73
#include <system/window.h>
74
#endif
75
76
#endif /* HAVE_ANDROID_PLATFORM */
77
78
#include "eglconfig.h"
79
#include "eglcontext.h"
80
#include "egldevice.h"
81
#include "egldisplay.h"
82
#include "egldriver.h"
83
#include "eglcurrent.h"
84
#include "egllog.h"
85
#include "eglsurface.h"
86
#include "eglimage.h"
87
#include "eglsync.h"
88
89
#include "util/u_vector.h"
90
#include "util/bitset.h"
91
92
#define EGL_DRI2_MAX_FORMATS 10
93
94
struct wl_buffer;
95
96
struct dri2_egl_display_vtbl {
97
/* mandatory on Wayland, unused otherwise */
98
int (*authenticate)(_EGLDisplay *disp, uint32_t id);
99
100
/* mandatory */
101
_EGLSurface* (*create_window_surface)(_EGLDisplay *disp, _EGLConfig *config,
102
void *native_window,
103
const EGLint *attrib_list);
104
105
/* optional */
106
_EGLSurface* (*create_pixmap_surface)(_EGLDisplay *disp, _EGLConfig *config,
107
void *native_pixmap,
108
const EGLint *attrib_list);
109
110
/* optional */
111
_EGLSurface* (*create_pbuffer_surface)(_EGLDisplay *disp, _EGLConfig *config,
112
const EGLint *attrib_list);
113
114
/* mandatory */
115
EGLBoolean (*destroy_surface)(_EGLDisplay *disp, _EGLSurface *surface);
116
117
/* optional */
118
EGLBoolean (*swap_interval)(_EGLDisplay *disp, _EGLSurface *surf,
119
EGLint interval);
120
121
/* mandatory */
122
_EGLImage* (*create_image)(_EGLDisplay *disp, _EGLContext *ctx,
123
EGLenum target, EGLClientBuffer buffer,
124
const EGLint *attr_list);
125
126
/* mandatory */
127
EGLBoolean (*swap_buffers)(_EGLDisplay *disp, _EGLSurface *surf);
128
129
/* optional - falls back to .swap_buffers */
130
EGLBoolean (*swap_buffers_with_damage)(_EGLDisplay *disp, _EGLSurface *surface,
131
const EGLint *rects, EGLint n_rects);
132
133
/* optional */
134
EGLBoolean (*swap_buffers_region)(_EGLDisplay *disp, _EGLSurface *surf,
135
EGLint numRects, const EGLint *rects);
136
137
/* optional */
138
EGLBoolean (*post_sub_buffer)(_EGLDisplay *disp, _EGLSurface *surf,
139
EGLint x, EGLint y,
140
EGLint width, EGLint height);
141
142
/* optional */
143
EGLBoolean (*copy_buffers)(_EGLDisplay *disp, _EGLSurface *surf,
144
void *native_pixmap_target);
145
146
/* optional */
147
EGLint (*query_buffer_age)(_EGLDisplay *disp, _EGLSurface *surf);
148
149
/* optional */
150
EGLBoolean (*query_surface)(_EGLDisplay *disp, _EGLSurface *surf,
151
EGLint attribute, EGLint *value);
152
153
/* optional */
154
struct wl_buffer* (*create_wayland_buffer_from_image)(_EGLDisplay *disp,
155
_EGLImage *img);
156
157
/* optional */
158
EGLBoolean (*get_sync_values)(_EGLDisplay *display, _EGLSurface *surface,
159
EGLuint64KHR *ust, EGLuint64KHR *msc,
160
EGLuint64KHR *sbc);
161
162
/* mandatory */
163
__DRIdrawable *(*get_dri_drawable)(_EGLSurface *surf);
164
165
/* optional */
166
void (*close_screen_notify)(_EGLDisplay *disp);
167
168
/* Used in EGL_KHR_mutable_render_buffer to update the native window's
169
* shared buffer mode.
170
* optional
171
*/
172
bool (*set_shared_buffer_mode)(_EGLDisplay *disp, _EGLSurface *surf,
173
bool mode);
174
};
175
176
struct dri2_egl_display
177
{
178
const struct dri2_egl_display_vtbl *vtbl;
179
180
int dri2_major;
181
int dri2_minor;
182
__DRIscreen *dri_screen;
183
bool own_dri_screen;
184
const __DRIconfig **driver_configs;
185
void *driver;
186
const __DRIcoreExtension *core;
187
const __DRIimageDriverExtension *image_driver;
188
const __DRIdri2Extension *dri2;
189
const __DRIswrastExtension *swrast;
190
const __DRI2flushExtension *flush;
191
const __DRI2flushControlExtension *flush_control;
192
const __DRItexBufferExtension *tex_buffer;
193
const __DRIimageExtension *image;
194
const __DRIrobustnessExtension *robustness;
195
const __DRInoErrorExtension *no_error;
196
const __DRI2configQueryExtension *config;
197
const __DRI2fenceExtension *fence;
198
const __DRI2bufferDamageExtension *buffer_damage;
199
const __DRI2blobExtension *blob;
200
const __DRI2rendererQueryExtension *rendererQuery;
201
const __DRI2interopExtension *interop;
202
const __DRIconfigOptionsExtension *configOptions;
203
const __DRImutableRenderBufferDriverExtension *mutable_render_buffer;
204
int fd;
205
206
/* dri2_initialize/dri2_terminate increment/decrement this count, so does
207
* dri2_make_current (tracks if there are active contexts/surfaces). */
208
int ref_count;
209
210
bool own_device;
211
bool invalidate_available;
212
int min_swap_interval;
213
int max_swap_interval;
214
int default_swap_interval;
215
#ifdef HAVE_DRM_PLATFORM
216
struct gbm_dri_device *gbm_dri;
217
#endif
218
219
char *driver_name;
220
221
const __DRIextension **loader_extensions;
222
const __DRIextension **driver_extensions;
223
224
#ifdef HAVE_X11_PLATFORM
225
xcb_connection_t *conn;
226
xcb_screen_t *screen;
227
bool swap_available;
228
#ifdef HAVE_DRI3
229
bool multibuffers_available;
230
int dri3_major_version;
231
int dri3_minor_version;
232
int present_major_version;
233
int present_minor_version;
234
struct loader_dri3_extensions loader_dri3_ext;
235
#endif
236
#endif
237
238
#ifdef HAVE_WAYLAND_PLATFORM
239
struct wl_display *wl_dpy;
240
struct wl_display *wl_dpy_wrapper;
241
struct wl_registry *wl_registry;
242
struct wl_drm *wl_server_drm;
243
struct wl_drm *wl_drm;
244
struct wl_shm *wl_shm;
245
struct wl_event_queue *wl_queue;
246
struct zwp_linux_dmabuf_v1 *wl_dmabuf;
247
struct u_vector *wl_modifiers;
248
bool authenticated;
249
BITSET_DECLARE(formats, EGL_DRI2_MAX_FORMATS);
250
uint32_t capabilities;
251
char *device_name;
252
#endif
253
254
#ifdef HAVE_ANDROID_PLATFORM
255
const gralloc_module_t *gralloc;
256
/* gralloc vendor usage bit for front rendering */
257
uint32_t front_rendering_usage;
258
#endif
259
260
bool is_render_node;
261
bool is_different_gpu;
262
};
263
264
struct dri2_egl_context
265
{
266
_EGLContext base;
267
__DRIcontext *dri_context;
268
};
269
270
#ifdef HAVE_WAYLAND_PLATFORM
271
enum wayland_buffer_type {
272
WL_BUFFER_FRONT,
273
WL_BUFFER_BACK,
274
WL_BUFFER_THIRD,
275
WL_BUFFER_COUNT
276
};
277
#endif
278
279
struct dri2_egl_surface
280
{
281
_EGLSurface base;
282
__DRIdrawable *dri_drawable;
283
__DRIbuffer buffers[5];
284
bool have_fake_front;
285
286
#ifdef HAVE_X11_PLATFORM
287
xcb_drawable_t drawable;
288
xcb_xfixes_region_t region;
289
int depth;
290
int bytes_per_pixel;
291
xcb_gcontext_t gc;
292
xcb_gcontext_t swapgc;
293
#endif
294
295
#ifdef HAVE_WAYLAND_PLATFORM
296
struct wl_egl_window *wl_win;
297
int dx;
298
int dy;
299
struct wl_event_queue *wl_queue;
300
struct wl_surface *wl_surface_wrapper;
301
struct wl_display *wl_dpy_wrapper;
302
struct wl_drm *wl_drm_wrapper;
303
struct wl_callback *throttle_callback;
304
int format;
305
#endif
306
307
#ifdef HAVE_DRM_PLATFORM
308
struct gbm_dri_surface *gbm_surf;
309
#endif
310
311
/* EGL-owned buffers */
312
__DRIbuffer *local_buffers[__DRI_BUFFER_COUNT];
313
314
#if defined(HAVE_WAYLAND_PLATFORM) || defined(HAVE_DRM_PLATFORM)
315
struct {
316
#ifdef HAVE_WAYLAND_PLATFORM
317
struct wl_buffer *wl_buffer;
318
bool wl_release;
319
__DRIimage *dri_image;
320
/* for is_different_gpu case. NULL else */
321
__DRIimage *linear_copy;
322
/* for swrast */
323
void *data;
324
int data_size;
325
#endif
326
#ifdef HAVE_DRM_PLATFORM
327
struct gbm_bo *bo;
328
#endif
329
bool locked;
330
int age;
331
} color_buffers[4], *back, *current;
332
#endif
333
334
#ifdef HAVE_ANDROID_PLATFORM
335
struct ANativeWindow *window;
336
struct ANativeWindowBuffer *buffer;
337
__DRIimage *dri_image_back;
338
__DRIimage *dri_image_front;
339
340
/* Used to record all the buffers created by ANativeWindow and their ages.
341
* Allocate number of color_buffers based on query to android bufferqueue
342
* and save color_buffers_count.
343
*/
344
int color_buffers_count;
345
struct {
346
struct ANativeWindowBuffer *buffer;
347
int age;
348
} *color_buffers, *back;
349
uint32_t gralloc_usage;
350
#endif
351
352
/* surfaceless and device */
353
__DRIimage *front;
354
unsigned int visual;
355
356
int out_fence_fd;
357
EGLBoolean enable_out_fence;
358
359
/* swrast device */
360
char *swrast_device_buffer;
361
};
362
363
struct dri2_egl_config
364
{
365
_EGLConfig base;
366
const __DRIconfig *dri_config[2][2];
367
};
368
369
struct dri2_egl_image
370
{
371
_EGLImage base;
372
__DRIimage *dri_image;
373
};
374
375
struct dri2_egl_sync {
376
_EGLSync base;
377
mtx_t mutex;
378
cnd_t cond;
379
int refcount;
380
void *fence;
381
};
382
383
/* From driconf.h, user exposed so should be stable */
384
#define DRI_CONF_VBLANK_NEVER 0
385
#define DRI_CONF_VBLANK_DEF_INTERVAL_0 1
386
#define DRI_CONF_VBLANK_DEF_INTERVAL_1 2
387
#define DRI_CONF_VBLANK_ALWAYS_SYNC 3
388
389
/* standard typecasts */
390
_EGL_DRIVER_STANDARD_TYPECASTS(dri2_egl)
391
_EGL_DRIVER_TYPECAST(dri2_egl_image, _EGLImage, obj)
392
_EGL_DRIVER_TYPECAST(dri2_egl_sync, _EGLSync, obj)
393
394
extern const __DRIimageLookupExtension image_lookup_extension;
395
extern const __DRIuseInvalidateExtension use_invalidate;
396
extern const __DRIbackgroundCallableExtension background_callable_extension;
397
extern const __DRIswrastLoaderExtension swrast_pbuffer_loader_extension;
398
399
EGLBoolean
400
dri2_load_driver(_EGLDisplay *disp);
401
402
/* Helper for platforms not using dri2_create_screen */
403
void
404
dri2_setup_screen(_EGLDisplay *disp);
405
406
void
407
dri2_setup_swap_interval(_EGLDisplay *disp, int max_swap_interval);
408
409
EGLBoolean
410
dri2_load_driver_swrast(_EGLDisplay *disp);
411
412
EGLBoolean
413
dri2_load_driver_dri3(_EGLDisplay *disp);
414
415
EGLBoolean
416
dri2_create_screen(_EGLDisplay *disp);
417
418
EGLBoolean
419
dri2_setup_extensions(_EGLDisplay *disp);
420
421
__DRIdrawable *
422
dri2_surface_get_dri_drawable(_EGLSurface *surf);
423
424
__DRIimage *
425
dri2_lookup_egl_image(__DRIscreen *screen, void *image, void *data);
426
427
void
428
dri2_get_shifts_and_sizes(const __DRIcoreExtension *core,
429
const __DRIconfig *config, int *shifts,
430
unsigned int *sizes);
431
432
void
433
dri2_get_render_type_float(const __DRIcoreExtension *core,
434
const __DRIconfig *config,
435
bool *is_float);
436
437
unsigned int
438
dri2_image_format_for_pbuffer_config(struct dri2_egl_display *dri2_dpy,
439
const __DRIconfig *config);
440
441
struct dri2_egl_config *
442
dri2_add_config(_EGLDisplay *disp, const __DRIconfig *dri_config, int id,
443
EGLint surface_type, const EGLint *attr_list,
444
const int *rgba_shifts, const unsigned int *rgba_sizes);
445
446
EGLBoolean
447
dri2_add_pbuffer_configs_for_visuals(_EGLDisplay *disp);
448
449
_EGLImage *
450
dri2_create_image_khr(_EGLDisplay *disp, _EGLContext *ctx, EGLenum target,
451
EGLClientBuffer buffer, const EGLint *attr_list);
452
453
_EGLImage *
454
dri2_create_image_dma_buf(_EGLDisplay *disp, _EGLContext *ctx,
455
EGLClientBuffer buffer, const EGLint *attr_list);
456
457
_EGLImage *
458
dri2_create_image_from_dri(_EGLDisplay *disp, __DRIimage *dri_image);
459
460
#ifdef HAVE_X11_PLATFORM
461
EGLBoolean
462
dri2_initialize_x11(_EGLDisplay *disp);
463
void
464
dri2_teardown_x11(struct dri2_egl_display *dri2_dpy);
465
unsigned int
466
dri2_x11_get_red_mask_for_depth(struct dri2_egl_display *dri2_dpy, int depth);
467
#else
468
static inline EGLBoolean
469
dri2_initialize_x11(_EGLDisplay *disp)
470
{
471
return _eglError(EGL_NOT_INITIALIZED, "X11 platform not built");
472
}
473
static inline void
474
dri2_teardown_x11(struct dri2_egl_display *dri2_dpy) {}
475
static inline unsigned int
476
dri2_x11_get_red_mask_for_depth(struct dri2_egl_display *dri2_dpy, int depth)
477
{
478
return 0;
479
}
480
#endif
481
482
#ifdef HAVE_DRM_PLATFORM
483
EGLBoolean
484
dri2_initialize_drm(_EGLDisplay *disp);
485
void
486
dri2_teardown_drm(struct dri2_egl_display *dri2_dpy);
487
#else
488
static inline EGLBoolean
489
dri2_initialize_drm(_EGLDisplay *disp)
490
{
491
return _eglError(EGL_NOT_INITIALIZED, "GBM/DRM platform not built");
492
}
493
static inline void
494
dri2_teardown_drm(struct dri2_egl_display *dri2_dpy) {}
495
#endif
496
497
#ifdef HAVE_WAYLAND_PLATFORM
498
EGLBoolean
499
dri2_initialize_wayland(_EGLDisplay *disp);
500
void
501
dri2_teardown_wayland(struct dri2_egl_display *dri2_dpy);
502
bool
503
dri2_wl_is_format_supported(void* user_data, uint32_t format);
504
#else
505
static inline EGLBoolean
506
dri2_initialize_wayland(_EGLDisplay *disp)
507
{
508
return _eglError(EGL_NOT_INITIALIZED, "Wayland platform not built");
509
}
510
static inline void
511
dri2_teardown_wayland(struct dri2_egl_display *dri2_dpy) {}
512
#endif
513
514
#ifdef HAVE_ANDROID_PLATFORM
515
EGLBoolean
516
dri2_initialize_android(_EGLDisplay *disp);
517
#else
518
static inline EGLBoolean
519
dri2_initialize_android(_EGLDisplay *disp)
520
{
521
return _eglError(EGL_NOT_INITIALIZED, "Android platform not built");
522
}
523
#endif
524
525
EGLBoolean
526
dri2_initialize_surfaceless(_EGLDisplay *disp);
527
528
EGLBoolean
529
dri2_initialize_device(_EGLDisplay *disp);
530
static inline void
531
dri2_teardown_device(struct dri2_egl_display *dri2_dpy) { /* noop */ }
532
533
void
534
dri2_flush_drawable_for_swapbuffers(_EGLDisplay *disp, _EGLSurface *draw);
535
536
const __DRIconfig *
537
dri2_get_dri_config(struct dri2_egl_config *conf, EGLint surface_type,
538
EGLenum colorspace);
539
540
static inline void
541
dri2_set_WL_bind_wayland_display(_EGLDisplay *disp)
542
{
543
#ifdef HAVE_WAYLAND_PLATFORM
544
struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
545
546
if (dri2_dpy->device_name && dri2_dpy->image) {
547
if (dri2_dpy->image->base.version >= 10 &&
548
dri2_dpy->image->getCapabilities != NULL) {
549
int capabilities;
550
551
capabilities =
552
dri2_dpy->image->getCapabilities(dri2_dpy->dri_screen);
553
disp->Extensions.WL_bind_wayland_display =
554
(capabilities & __DRI_IMAGE_CAP_GLOBAL_NAMES) != 0;
555
} else {
556
disp->Extensions.WL_bind_wayland_display = EGL_TRUE;
557
}
558
}
559
#endif
560
}
561
562
void
563
dri2_display_destroy(_EGLDisplay *disp);
564
565
__DRIbuffer *
566
dri2_egl_surface_alloc_local_buffer(struct dri2_egl_surface *dri2_surf,
567
unsigned int att, unsigned int format);
568
569
void
570
dri2_egl_surface_free_local_buffers(struct dri2_egl_surface *dri2_surf);
571
572
EGLBoolean
573
dri2_init_surface(_EGLSurface *surf, _EGLDisplay *disp, EGLint type,
574
_EGLConfig *conf, const EGLint *attrib_list,
575
EGLBoolean enable_out_fence, void *native_surface);
576
577
void
578
dri2_fini_surface(_EGLSurface *surf);
579
580
EGLBoolean
581
dri2_create_drawable(struct dri2_egl_display *dri2_dpy,
582
const __DRIconfig *config,
583
struct dri2_egl_surface *dri2_surf,
584
void *loaderPrivate);
585
586
static inline uint64_t
587
combine_u32_into_u64(uint32_t hi, uint32_t lo)
588
{
589
return (((uint64_t) hi) << 32) | (((uint64_t) lo) & 0xffffffff);
590
}
591
592
#endif /* EGL_DRI2_INCLUDED */
593
594