blob: 7ed0169a98459951a45e5cf698b34bcd46fb4988 [file] [log] [blame]
Brian Paul192c9882004-03-22 23:31:29 +00001/*
2 * Copyright 1998-1999 Precision Insight, Inc., Cedar Park, Texas.
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -04003 * Copyright 2007-2008 Red Hat, Inc.
Brian Paul192c9882004-03-22 23:31:29 +00004 * (C) Copyright IBM Corporation 2004
5 * All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * on the rights to use, copy, modify, merge, publish, distribute, sub
11 * license, and/or sell copies of the Software, and to permit persons to whom
12 * the Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the next
15 * paragraph) shall be included in all copies or substantial portions of the
16 * Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
21 * THE COPYRIGHT HOLDERS AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
22 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
23 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
24 * USE OR OTHER DEALINGS IN THE SOFTWARE.
25 */
26
27/**
28 * \file dri_interface.h
29 *
30 * This file contains all the types and functions that define the interface
31 * between a DRI driver and driver loader. Currently, the most common driver
32 * loader is the XFree86 libGL.so. However, other loaders do exist, and in
33 * the future the server-side libglx.a will also be a loader.
34 *
35 * \author Kevin E. Martin <kevin@precisioninsight.com>
36 * \author Ian Romanick <idr@us.ibm.com>
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -040037 * \author Kristian Høgsberg <krh@redhat.com>
Brian Paul192c9882004-03-22 23:31:29 +000038 */
39
Keith Whitwell74d563c2004-04-29 12:23:39 +000040#ifndef DRI_INTERFACE_H
41#define DRI_INTERFACE_H
42
Emil Velikov0efd7732015-07-07 15:13:46 +010043#ifdef HAVE_LIBDRM
Ian Romanickfabe2b92004-06-01 16:38:56 +000044#include <drm.h>
Jeremy Huddleston01ac4542008-08-08 02:19:52 -070045#else
46typedef unsigned int drm_context_t;
47typedef unsigned int drm_drawable_t;
48typedef struct drm_clip_rect drm_clip_rect_t;
49#endif
Brian Paul192c9882004-03-22 23:31:29 +000050
Emil Velikove3962652017-08-22 11:39:36 +010051#include <stdint.h>
52
Brian Paul192c9882004-03-22 23:31:29 +000053/**
54 * \name DRI interface structures
55 *
56 * The following structures define the interface between the GLX client
57 * side library and the DRI (direct rendering infrastructure).
58 */
59/*@{*/
Kristian Høgsberg4a22ae82007-01-07 08:12:01 -050060typedef struct __DRIdisplayRec __DRIdisplay;
61typedef struct __DRIscreenRec __DRIscreen;
62typedef struct __DRIcontextRec __DRIcontext;
63typedef struct __DRIdrawableRec __DRIdrawable;
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -040064typedef struct __DRIconfigRec __DRIconfig;
Kristian Høgsberg4a22ae82007-01-07 08:12:01 -050065typedef struct __DRIframebufferRec __DRIframebuffer;
66typedef struct __DRIversionRec __DRIversion;
Kristian Høgsbergf616a262007-05-15 12:31:31 -040067
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -040068typedef struct __DRIcoreExtensionRec __DRIcoreExtension;
Kristian Høgsberg78a6aa52007-05-16 14:10:29 -040069typedef struct __DRIextensionRec __DRIextension;
Kristian Høgsbergac3e8382007-05-15 15:17:30 -040070typedef struct __DRIcopySubBufferExtensionRec __DRIcopySubBufferExtension;
Kristian Høgsbergefaf90b2007-05-15 16:09:44 -040071typedef struct __DRIswapControlExtensionRec __DRIswapControlExtension;
Kristian Høgsberga7a0a2b2007-05-16 15:50:40 -040072typedef struct __DRIframeTrackingExtensionRec __DRIframeTrackingExtension;
Kristian Høgsberg106a6f22007-05-16 18:13:41 -040073typedef struct __DRImediaStreamCounterExtensionRec __DRImediaStreamCounterExtension;
Kristian Høgsbergf29f0ae2007-05-22 12:26:02 -040074typedef struct __DRItexOffsetExtensionRec __DRItexOffsetExtension;
Kristian Høgsberg6d487792008-02-14 22:12:51 -050075typedef struct __DRItexBufferExtensionRec __DRItexBufferExtension;
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -040076typedef struct __DRIlegacyExtensionRec __DRIlegacyExtension;
George Sapountzis280bf892008-05-11 14:43:40 +030077typedef struct __DRIswrastExtensionRec __DRIswrastExtension;
Kristian Høgsbergf56b5692008-08-13 11:46:25 -040078typedef struct __DRIbufferRec __DRIbuffer;
79typedef struct __DRIdri2ExtensionRec __DRIdri2Extension;
80typedef struct __DRIdri2LoaderExtensionRec __DRIdri2LoaderExtension;
Alan Hourihane65562452009-02-19 18:39:08 +000081typedef struct __DRI2flushExtensionRec __DRI2flushExtension;
Thomas Hellstrom511dc292011-10-10 16:38:19 +020082typedef struct __DRI2throttleExtensionRec __DRI2throttleExtension;
Marek Olšákb02a5bf2015-04-10 10:43:26 +020083typedef struct __DRI2fenceExtensionRec __DRI2fenceExtension;
Marek Olšák5e9ed262016-02-29 23:19:18 +010084typedef struct __DRI2interopExtensionRec __DRI2interopExtension;
Kristian Høgsbergf56b5692008-08-13 11:46:25 -040085
Keith Packard44244202013-11-04 18:09:51 -080086
87typedef struct __DRIimageLoaderExtensionRec __DRIimageLoaderExtension;
88typedef struct __DRIimageDriverExtensionRec __DRIimageDriverExtension;
89
Brian Paul192c9882004-03-22 23:31:29 +000090/*@}*/
91
92
93/**
Kristian Høgsbergf616a262007-05-15 12:31:31 -040094 * Extension struct. Drivers 'inherit' from this struct by embedding
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -040095 * it as the first element in the extension struct.
Kristian Høgsbergccff0cb2007-06-07 19:35:54 -040096 *
97 * We never break API in for a DRI extension. If we need to change
98 * the way things work in a non-backwards compatible manner, we
99 * introduce a new extension. During a transition period, we can
100 * leave both the old and the new extension in the driver, which
101 * allows us to move to the new interface without having to update the
102 * loader(s) in lock step.
103 *
104 * However, we can add entry points to an extension over time as long
105 * as we don't break the old ones. As we add entry points to an
106 * extension, we increase the version number. The corresponding
107 * #define can be used to guard code that accesses the new entry
108 * points at compile time and the version field in the extension
109 * struct can be used at run-time to determine how to use the
110 * extension.
Kristian Høgsbergf616a262007-05-15 12:31:31 -0400111 */
112struct __DRIextensionRec {
113 const char *name;
Kristian Høgsbergccff0cb2007-06-07 19:35:54 -0400114 int version;
Kristian Høgsbergf616a262007-05-15 12:31:31 -0400115};
116
Kristian Høgsbergac3e8382007-05-15 15:17:30 -0400117/**
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -0400118 * The first set of extension are the screen extensions, returned by
119 * __DRIcore::getExtensions(). This entry point will return a list of
120 * extensions and the loader can use the ones it knows about by
121 * casting them to more specific extensions and advertising any GLX
122 * extensions the DRI extensions enables.
123 */
124
125/**
Kristian Høgsbergf968f672007-05-17 14:39:06 -0400126 * Used by drivers to indicate support for setting the read drawable.
127 */
128#define __DRI_READ_DRAWABLE "DRI_ReadDrawable"
Kristian Høgsbergccff0cb2007-06-07 19:35:54 -0400129#define __DRI_READ_DRAWABLE_VERSION 1
Kristian Høgsbergf968f672007-05-17 14:39:06 -0400130
131/**
Kristian Høgsbergac3e8382007-05-15 15:17:30 -0400132 * Used by drivers that implement the GLX_MESA_copy_sub_buffer extension.
133 */
134#define __DRI_COPY_SUB_BUFFER "DRI_CopySubBuffer"
Kristian Høgsbergccff0cb2007-06-07 19:35:54 -0400135#define __DRI_COPY_SUB_BUFFER_VERSION 1
Kristian Høgsbergac3e8382007-05-15 15:17:30 -0400136struct __DRIcopySubBufferExtensionRec {
137 __DRIextension base;
138 void (*copySubBuffer)(__DRIdrawable *drawable, int x, int y, int w, int h);
139};
140
Kristian Høgsbergefaf90b2007-05-15 16:09:44 -0400141/**
142 * Used by drivers that implement the GLX_SGI_swap_control or
143 * GLX_MESA_swap_control extension.
144 */
145#define __DRI_SWAP_CONTROL "DRI_SwapControl"
Kristian Høgsbergccff0cb2007-06-07 19:35:54 -0400146#define __DRI_SWAP_CONTROL_VERSION 1
Kristian Høgsbergefaf90b2007-05-15 16:09:44 -0400147struct __DRIswapControlExtensionRec {
148 __DRIextension base;
149 void (*setSwapInterval)(__DRIdrawable *drawable, unsigned int inteval);
150 unsigned int (*getSwapInterval)(__DRIdrawable *drawable);
151};
Kristian Høgsbergf616a262007-05-15 12:31:31 -0400152
153/**
Kristian Høgsberga7a0a2b2007-05-16 15:50:40 -0400154 * Used by drivers that implement the GLX_MESA_swap_frame_usage extension.
155 */
156#define __DRI_FRAME_TRACKING "DRI_FrameTracking"
Kristian Høgsbergccff0cb2007-06-07 19:35:54 -0400157#define __DRI_FRAME_TRACKING_VERSION 1
Kristian Høgsberga7a0a2b2007-05-16 15:50:40 -0400158struct __DRIframeTrackingExtensionRec {
159 __DRIextension base;
160
161 /**
162 * Enable or disable frame usage tracking.
163 *
164 * \since Internal API version 20030317.
165 */
166 int (*frameTracking)(__DRIdrawable *drawable, GLboolean enable);
167
168 /**
169 * Retrieve frame usage information.
170 *
171 * \since Internal API version 20030317.
172 */
173 int (*queryFrameTracking)(__DRIdrawable *drawable,
174 int64_t * sbc, int64_t * missedFrames,
175 float * lastMissedUsage, float * usage);
176};
177
Kristian Høgsberg106a6f22007-05-16 18:13:41 -0400178
179/**
180 * Used by drivers that implement the GLX_SGI_video_sync extension.
181 */
182#define __DRI_MEDIA_STREAM_COUNTER "DRI_MediaStreamCounter"
Kristian Høgsberg6e8d21d2008-02-25 16:14:37 -0500183#define __DRI_MEDIA_STREAM_COUNTER_VERSION 1
Kristian Høgsberg106a6f22007-05-16 18:13:41 -0400184struct __DRImediaStreamCounterExtensionRec {
185 __DRIextension base;
186
187 /**
Kristian Høgsberg106a6f22007-05-16 18:13:41 -0400188 * Wait for the MSC to equal target_msc, or, if that has already passed,
189 * the next time (MSC % divisor) is equal to remainder. If divisor is
190 * zero, the function will return as soon as MSC is greater than or equal
191 * to target_msc.
192 */
193 int (*waitForMSC)(__DRIdrawable *drawable,
194 int64_t target_msc, int64_t divisor, int64_t remainder,
195 int64_t * msc, int64_t * sbc);
Jesse Barnes38fdb472007-10-29 11:56:31 -0700196
197 /**
Jesse Barnes38fdb472007-10-29 11:56:31 -0700198 * Get the number of vertical refreshes since some point in time before
199 * this function was first called (i.e., system start up).
Jesse Barnes38fdb472007-10-29 11:56:31 -0700200 */
Kristian Høgsberg6e8d21d2008-02-25 16:14:37 -0500201 int (*getDrawableMSC)(__DRIscreen *screen, __DRIdrawable *drawable,
Jesse Barnes38fdb472007-10-29 11:56:31 -0700202 int64_t *msc);
Kristian Høgsberg106a6f22007-05-16 18:13:41 -0400203};
204
205
Kristian Høgsbergf29f0ae2007-05-22 12:26:02 -0400206#define __DRI_TEX_OFFSET "DRI_TexOffset"
Kristian Høgsbergccff0cb2007-06-07 19:35:54 -0400207#define __DRI_TEX_OFFSET_VERSION 1
Kristian Høgsbergf29f0ae2007-05-22 12:26:02 -0400208struct __DRItexOffsetExtensionRec {
209 __DRIextension base;
210
211 /**
212 * Method to override base texture image with a driver specific 'offset'.
213 * The depth passed in allows e.g. to ignore the alpha channel of texture
214 * images where the non-alpha components don't occupy a whole texel.
215 *
216 * For GLX_EXT_texture_from_pixmap with AIGLX.
217 */
218 void (*setTexOffset)(__DRIcontext *pDRICtx, GLint texname,
219 unsigned long long offset, GLint depth, GLuint pitch);
220};
221
222
Kristian Høgsbergdebf00e2010-02-09 15:26:14 -0500223/* Valid values for format in the setTexBuffer2 function below. These
224 * values match the GLX tokens for compatibility reasons, but we
225 * define them here since the DRI interface can't depend on GLX. */
226#define __DRI_TEXTURE_FORMAT_NONE 0x20D8
227#define __DRI_TEXTURE_FORMAT_RGB 0x20D9
228#define __DRI_TEXTURE_FORMAT_RGBA 0x20DA
229
Kristian Høgsberg6d487792008-02-14 22:12:51 -0500230#define __DRI_TEX_BUFFER "DRI_TexBuffer"
Emil Velikov9b42fd12014-02-18 03:04:03 +0000231#define __DRI_TEX_BUFFER_VERSION 3
Kristian Høgsberg6d487792008-02-14 22:12:51 -0500232struct __DRItexBufferExtensionRec {
233 __DRIextension base;
234
235 /**
Kristian Høgsbergdcbe2152008-03-09 21:28:04 -0400236 * Method to override base texture image with the contents of a
237 * __DRIdrawable.
Kristian Høgsberg6d487792008-02-14 22:12:51 -0500238 *
Eric Anholt66175aa2009-03-18 12:07:09 -0700239 * For GLX_EXT_texture_from_pixmap with AIGLX. Deprecated in favor of
240 * setTexBuffer2 in version 2 of this interface
Kristian Høgsberg6d487792008-02-14 22:12:51 -0500241 */
242 void (*setTexBuffer)(__DRIcontext *pDRICtx,
Kristian Høgsbergdcbe2152008-03-09 21:28:04 -0400243 GLint target,
244 __DRIdrawable *pDraw);
Eric Anholt66175aa2009-03-18 12:07:09 -0700245
246 /**
247 * Method to override base texture image with the contents of a
248 * __DRIdrawable, including the required texture format attribute.
249 *
250 * For GLX_EXT_texture_from_pixmap with AIGLX.
Emil Velikovc9fff072014-02-12 19:00:21 +0000251 *
252 * \since 2
Eric Anholt66175aa2009-03-18 12:07:09 -0700253 */
254 void (*setTexBuffer2)(__DRIcontext *pDRICtx,
255 GLint target,
256 GLint format,
257 __DRIdrawable *pDraw);
Juan Zhaoe59fa4c2011-01-09 12:03:02 -0500258 /**
259 * Method to release texture buffer in case some special platform
260 * need this.
261 *
262 * For GLX_EXT_texture_from_pixmap with AIGLX.
Emil Velikovc9fff072014-02-12 19:00:21 +0000263 *
264 * \since 3
Juan Zhaoe59fa4c2011-01-09 12:03:02 -0500265 */
266 void (*releaseTexBuffer)(__DRIcontext *pDRICtx,
267 GLint target,
268 __DRIdrawable *pDraw);
Kristian Høgsberg6d487792008-02-14 22:12:51 -0500269};
270
Alan Hourihane65562452009-02-19 18:39:08 +0000271/**
272 * Used by drivers that implement DRI2
273 */
274#define __DRI2_FLUSH "DRI2_Flush"
Marek Olšák4a486f82012-11-23 18:31:42 +0100275#define __DRI2_FLUSH_VERSION 4
276
277#define __DRI2_FLUSH_DRAWABLE (1 << 0) /* the drawable should be flushed. */
278#define __DRI2_FLUSH_CONTEXT (1 << 1) /* glFlush should be called */
Eric Anholt70e8ccc2014-12-21 11:51:33 -0800279#define __DRI2_FLUSH_INVALIDATE_ANCILLARY (1 << 2)
Marek Olšák4a486f82012-11-23 18:31:42 +0100280
Chad Versacee5f1f8d2012-12-01 17:03:59 -0800281enum __DRI2throttleReason {
282 __DRI2_THROTTLE_SWAPBUFFER,
283 __DRI2_THROTTLE_COPYSUBBUFFER,
284 __DRI2_THROTTLE_FLUSHFRONT
285};
Marek Olšák4a486f82012-11-23 18:31:42 +0100286
Alan Hourihane65562452009-02-19 18:39:08 +0000287struct __DRI2flushExtensionRec {
288 __DRIextension base;
289 void (*flush)(__DRIdrawable *drawable);
Jesse Barnesa35f6bb2009-07-17 03:30:29 -0400290
291 /**
Francisco Jerez61d26bc2010-02-08 19:27:56 +0100292 * Ask the driver to call getBuffers/getBuffersWithFormat before
293 * it starts rendering again.
Jesse Barnesa35f6bb2009-07-17 03:30:29 -0400294 *
Francisco Jerez61d26bc2010-02-08 19:27:56 +0100295 * \param drawable the drawable to invalidate
Jesse Barnesa35f6bb2009-07-17 03:30:29 -0400296 *
Francisco Jerez61d26bc2010-02-08 19:27:56 +0100297 * \since 3
Jesse Barnesa35f6bb2009-07-17 03:30:29 -0400298 */
Francisco Jerez61d26bc2010-02-08 19:27:56 +0100299 void (*invalidate)(__DRIdrawable *drawable);
Marek Olšák4a486f82012-11-23 18:31:42 +0100300
301 /**
302 * This function reduces the number of flushes in the driver by combining
303 * several operations into one call.
304 *
305 * It can:
306 * - throttle
307 * - flush a drawable
308 * - flush a context
309 *
310 * \param context the context
311 * \param drawable the drawable to flush
312 * \param flags a combination of _DRI2_FLUSH_xxx flags
313 * \param throttle_reason the reason for throttling, 0 = no throttling
314 *
315 * \since 4
316 */
317 void (*flush_with_flags)(__DRIcontext *ctx,
318 __DRIdrawable *drawable,
319 unsigned flags,
320 enum __DRI2throttleReason throttle_reason);
Alan Hourihane65562452009-02-19 18:39:08 +0000321};
322
Kristian Høgsberg6d487792008-02-14 22:12:51 -0500323
Kristian Høgsberga7a0a2b2007-05-16 15:50:40 -0400324/**
Thomas Hellstrom511dc292011-10-10 16:38:19 +0200325 * Extension that the driver uses to request
326 * throttle callbacks.
327 */
328
329#define __DRI2_THROTTLE "DRI2_Throttle"
330#define __DRI2_THROTTLE_VERSION 1
331
Thomas Hellstrom511dc292011-10-10 16:38:19 +0200332struct __DRI2throttleExtensionRec {
333 __DRIextension base;
334 void (*throttle)(__DRIcontext *ctx,
335 __DRIdrawable *drawable,
336 enum __DRI2throttleReason reason);
337};
338
Marek Olšákb02a5bf2015-04-10 10:43:26 +0200339
340/**
341 * Extension for fences / synchronization objects.
342 */
343
344#define __DRI2_FENCE "DRI2_Fence"
Rob Clark21b1acf2016-11-18 08:39:32 -0500345#define __DRI2_FENCE_VERSION 2
Marek Olšákb02a5bf2015-04-10 10:43:26 +0200346
Marek Olšákaaee0d12017-07-06 02:23:46 +0200347#define __DRI2_FENCE_TIMEOUT_INFINITE 0xffffffffffffffffull
Marek Olšákb02a5bf2015-04-10 10:43:26 +0200348
349#define __DRI2_FENCE_FLAG_FLUSH_COMMANDS (1 << 0)
350
Rob Clark21b1acf2016-11-18 08:39:32 -0500351/**
352 * \name Capabilities that might be returned by __DRI2fenceExtensionRec::get_capabilities
353 */
354/*@{*/
355#define __DRI_FENCE_CAP_NATIVE_FD 1
356/*@}*/
357
Marek Olšákb02a5bf2015-04-10 10:43:26 +0200358struct __DRI2fenceExtensionRec {
359 __DRIextension base;
360
361 /**
362 * Create and insert a fence into the command stream of the context.
363 */
364 void *(*create_fence)(__DRIcontext *ctx);
365
366 /**
367 * Get a fence associated with the OpenCL event object.
368 * This can be NULL, meaning that OpenCL interoperability is not supported.
369 */
370 void *(*get_fence_from_cl_event)(__DRIscreen *screen, intptr_t cl_event);
371
372 /**
373 * Destroy a fence.
374 */
375 void (*destroy_fence)(__DRIscreen *screen, void *fence);
376
377 /**
378 * This function waits and doesn't return until the fence is signalled
379 * or the timeout expires. It returns true if the fence has been signaled.
380 *
381 * \param ctx the context where commands are flushed
382 * \param fence the fence
383 * \param flags a combination of __DRI2_FENCE_FLAG_xxx flags
384 * \param timeout the timeout in ns or __DRI2_FENCE_TIMEOUT_INFINITE
385 */
386 GLboolean (*client_wait_sync)(__DRIcontext *ctx, void *fence,
387 unsigned flags, uint64_t timeout);
388
389 /**
390 * This function enqueues a wait command into the command stream of
391 * the context and then returns. When the execution reaches the wait
392 * command, no further execution will be done in the context until
393 * the fence is signaled. This is a no-op if the device doesn't support
394 * parallel execution of contexts.
395 *
396 * \param ctx the context where the waiting is done
397 * \param fence the fence
398 * \param flags a combination of __DRI2_FENCE_FLAG_xxx flags that make
399 * sense with this function (right now there are none)
400 */
401 void (*server_wait_sync)(__DRIcontext *ctx, void *fence, unsigned flags);
Rob Clark21b1acf2016-11-18 08:39:32 -0500402
403 /**
404 * Query for general capabilities of the driver that concern fences.
405 * Returns a bitmask of __DRI_FENCE_CAP_x
406 *
407 * \since 2
408 */
409 unsigned (*get_capabilities)(__DRIscreen *screen);
410
411 /**
412 * Create an fd (file descriptor) associated fence. If the fence fd
413 * is -1, this behaves similarly to create_fence() except that when
414 * rendering is flushed the driver creates a fence fd. Otherwise,
415 * the driver wraps an existing fence fd.
416 *
417 * This is used to implement the EGL_ANDROID_native_fence_sync extension.
418 *
419 * \since 2
420 *
421 * \param ctx the context associated with the fence
422 * \param fd the fence fd or -1
423 */
424 void *(*create_fence_fd)(__DRIcontext *ctx, int fd);
425
426 /**
427 * For fences created with create_fence_fd(), after rendering is flushed,
428 * this retrieves the native fence fd. Caller takes ownership of the
429 * fd and will close() it when it is no longer needed.
430 *
431 * \since 2
432 *
433 * \param screen the screen associated with the fence
434 * \param fence the fence
435 */
436 int (*get_fence_fd)(__DRIscreen *screen, void *fence);
Marek Olšákb02a5bf2015-04-10 10:43:26 +0200437};
438
439
Marek Olšák5e9ed262016-02-29 23:19:18 +0100440/**
441 * Extension for API interop.
442 * See GL/mesa_glinterop.h.
443 */
444
445#define __DRI2_INTEROP "DRI2_Interop"
446#define __DRI2_INTEROP_VERSION 1
447
Emil Velikov13faddb2016-05-30 10:56:33 +0100448struct mesa_glinterop_device_info;
449struct mesa_glinterop_export_in;
450struct mesa_glinterop_export_out;
Marek Olšák5e9ed262016-02-29 23:19:18 +0100451
452struct __DRI2interopExtensionRec {
453 __DRIextension base;
454
455 /** Same as MesaGLInterop*QueryDeviceInfo. */
456 int (*query_device_info)(__DRIcontext *ctx,
Emil Velikov13faddb2016-05-30 10:56:33 +0100457 struct mesa_glinterop_device_info *out);
Marek Olšák5e9ed262016-02-29 23:19:18 +0100458
459 /** Same as MesaGLInterop*ExportObject. */
460 int (*export_object)(__DRIcontext *ctx,
Emil Velikov13faddb2016-05-30 10:56:33 +0100461 struct mesa_glinterop_export_in *in,
462 struct mesa_glinterop_export_out *out);
Marek Olšák5e9ed262016-02-29 23:19:18 +0100463};
464
Brian Paul192c9882004-03-22 23:31:29 +0000465/*@}*/
466
Kristian Høgsberg6cb3f5c2008-02-28 10:32:28 -0500467/**
468 * The following extensions describe loader features that the DRI
469 * driver can make use of. Some of these are mandatory, such as the
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -0400470 * getDrawableInfo extension for DRI and the DRI Loader extensions for
Kristian Høgsberg6cb3f5c2008-02-28 10:32:28 -0500471 * DRI2, while others are optional, and if present allow the driver to
472 * expose certain features. The loader pass in a NULL terminated
473 * array of these extensions to the driver in the createNewScreen
474 * constructor.
475 */
Ian Romanick5f1ba3e2005-07-26 02:44:01 +0000476
Kristian Høgsberg6cb3f5c2008-02-28 10:32:28 -0500477typedef struct __DRIgetDrawableInfoExtensionRec __DRIgetDrawableInfoExtension;
478typedef struct __DRIsystemTimeExtensionRec __DRIsystemTimeExtension;
479typedef struct __DRIdamageExtensionRec __DRIdamageExtension;
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -0400480typedef struct __DRIloaderExtensionRec __DRIloaderExtension;
George Sapountzis280bf892008-05-11 14:43:40 +0300481typedef struct __DRIswrastLoaderExtensionRec __DRIswrastLoaderExtension;
Ian Romanick5f1ba3e2005-07-26 02:44:01 +0000482
Ian Romanick5f1ba3e2005-07-26 02:44:01 +0000483
Kristian Høgsberg6cb3f5c2008-02-28 10:32:28 -0500484/**
485 * Callback to getDrawableInfo protocol
486 */
487#define __DRI_GET_DRAWABLE_INFO "DRI_GetDrawableInfo"
488#define __DRI_GET_DRAWABLE_INFO_VERSION 1
489struct __DRIgetDrawableInfoExtensionRec {
490 __DRIextension base;
Ian Romanick5f1ba3e2005-07-26 02:44:01 +0000491
492 /**
Ian Romanick5f1ba3e2005-07-26 02:44:01 +0000493 * This function is used to get information about the position, size, and
494 * clip rects of a drawable.
495 */
Kristian Høgsberg4ff95e72007-05-10 17:14:38 -0400496 GLboolean (* getDrawableInfo) ( __DRIdrawable *drawable,
Kristian Høgsbergaceccda2007-05-10 15:52:22 -0400497 unsigned int * index, unsigned int * stamp,
Ian Romanick5f1ba3e2005-07-26 02:44:01 +0000498 int * x, int * y, int * width, int * height,
499 int * numClipRects, drm_clip_rect_t ** pClipRects,
500 int * backX, int * backY,
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -0400501 int * numBackClipRects, drm_clip_rect_t ** pBackClipRects,
502 void *loaderPrivate);
Kristian Høgsberg6cb3f5c2008-02-28 10:32:28 -0500503};
Ian Romanick5f1ba3e2005-07-26 02:44:01 +0000504
Kristian Høgsberg6cb3f5c2008-02-28 10:32:28 -0500505/**
506 * Callback to get system time for media stream counter extensions.
507 */
508#define __DRI_SYSTEM_TIME "DRI_SystemTime"
509#define __DRI_SYSTEM_TIME_VERSION 1
510struct __DRIsystemTimeExtensionRec {
511 __DRIextension base;
Ian Romanick5f1ba3e2005-07-26 02:44:01 +0000512
513 /**
Ian Romanick5f1ba3e2005-07-26 02:44:01 +0000514 * Get the 64-bit unadjusted system time (UST).
515 */
516 int (*getUST)(int64_t * ust);
517
518 /**
519 * Get the media stream counter (MSC) rate.
520 *
521 * Matching the definition in GLX_OML_sync_control, this function returns
522 * the rate of the "media stream counter". In practical terms, this is
523 * the frame refresh rate of the display.
524 */
Kristian Høgsbergaceccda2007-05-10 15:52:22 -0400525 GLboolean (*getMSCRate)(__DRIdrawable *draw,
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -0400526 int32_t * numerator, int32_t * denominator,
527 void *loaderPrivate);
Kristian Høgsberg6cb3f5c2008-02-28 10:32:28 -0500528};
529
530/**
531 * Damage reporting
532 */
533#define __DRI_DAMAGE "DRI_Damage"
534#define __DRI_DAMAGE_VERSION 1
535struct __DRIdamageExtensionRec {
536 __DRIextension base;
Eric Anholtc2b185c2007-01-05 18:19:58 -0800537
538 /**
539 * Reports areas of the given drawable which have been modified by the
540 * driver.
541 *
542 * \param drawable which the drawing was done to.
543 * \param rects rectangles affected, with the drawable origin as the
544 * origin.
545 * \param x X offset of the drawable within the screen (used in the
546 * front_buffer case)
547 * \param y Y offset of the drawable within the screen.
548 * \param front_buffer boolean flag for whether the drawing to the
549 * drawable was actually done directly to the front buffer (instead
550 * of backing storage, for example)
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -0400551 * \param loaderPrivate the data passed in at createNewDrawable time
Eric Anholtc2b185c2007-01-05 18:19:58 -0800552 */
Kristian Høgsbergaceccda2007-05-10 15:52:22 -0400553 void (*reportDamage)(__DRIdrawable *draw,
Eric Anholtc2b185c2007-01-05 18:19:58 -0800554 int x, int y,
555 drm_clip_rect_t *rects, int num_rects,
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -0400556 GLboolean front_buffer,
557 void *loaderPrivate);
Kristian Høgsberg6cb3f5c2008-02-28 10:32:28 -0500558};
559
George Sapountzis280bf892008-05-11 14:43:40 +0300560#define __DRI_SWRAST_IMAGE_OP_DRAW 1
561#define __DRI_SWRAST_IMAGE_OP_CLEAR 2
562#define __DRI_SWRAST_IMAGE_OP_SWAP 3
563
564/**
565 * SWRast Loader extension.
566 */
567#define __DRI_SWRAST_LOADER "DRI_SWRastLoader"
Dave Airlie2b676572015-10-09 01:38:08 +0100568#define __DRI_SWRAST_LOADER_VERSION 3
George Sapountzis280bf892008-05-11 14:43:40 +0300569struct __DRIswrastLoaderExtensionRec {
570 __DRIextension base;
571
572 /*
573 * Drawable position and size
574 */
575 void (*getDrawableInfo)(__DRIdrawable *drawable,
576 int *x, int *y, int *width, int *height,
577 void *loaderPrivate);
578
579 /**
580 * Put image to drawable
581 */
582 void (*putImage)(__DRIdrawable *drawable, int op,
George Sapountzisf4e561c2010-03-27 20:32:52 +0200583 int x, int y, int width, int height,
584 char *data, void *loaderPrivate);
George Sapountzis280bf892008-05-11 14:43:40 +0300585
586 /**
George Sapountzisf4e561c2010-03-27 20:32:52 +0200587 * Get image from readable
George Sapountzis280bf892008-05-11 14:43:40 +0300588 */
George Sapountzisf4e561c2010-03-27 20:32:52 +0200589 void (*getImage)(__DRIdrawable *readable,
590 int x, int y, int width, int height,
591 char *data, void *loaderPrivate);
Dave Airlieba00f2f2013-11-28 11:08:11 +1000592
593 /**
594 * Put image to drawable
Emil Velikovacf2fae2014-02-18 02:31:27 +0000595 *
596 * \since 2
Dave Airlieba00f2f2013-11-28 11:08:11 +1000597 */
598 void (*putImage2)(__DRIdrawable *drawable, int op,
599 int x, int y, int width, int height, int stride,
600 char *data, void *loaderPrivate);
Dave Airlie2b676572015-10-09 01:38:08 +0100601
602 /**
603 * Put image to drawable
604 *
605 * \since 3
606 */
607 void (*getImage2)(__DRIdrawable *readable,
608 int x, int y, int width, int height, int stride,
609 char *data, void *loaderPrivate);
George Sapountzis280bf892008-05-11 14:43:40 +0300610};
611
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -0400612/**
Kristian Høgsberg97a6cbc2010-05-11 09:09:30 -0400613 * Invalidate loader extension. The presence of this extension
614 * indicates to the DRI driver that the loader will call invalidate in
615 * the __DRI2_FLUSH extension, whenever the needs to query for new
616 * buffers. This means that the DRI driver can drop the polling in
617 * glViewport().
618 *
619 * The extension doesn't provide any functionality, it's only use to
620 * indicate to the driver that it can use the new semantics. A DRI
621 * driver can use this to switch between the different semantics or
622 * just refuse to initialize if this extension isn't present.
623 */
624#define __DRI_USE_INVALIDATE "DRI_UseInvalidate"
625#define __DRI_USE_INVALIDATE_VERSION 1
626
627typedef struct __DRIuseInvalidateExtensionRec __DRIuseInvalidateExtension;
628struct __DRIuseInvalidateExtensionRec {
629 __DRIextension base;
630};
631
632/**
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -0400633 * The remaining extensions describe driver extensions, immediately
634 * available interfaces provided by the driver. To start using the
635 * driver, dlsym() for the __DRI_DRIVER_EXTENSIONS symbol and look for
636 * the extension you need in the array.
637 */
638#define __DRI_DRIVER_EXTENSIONS "__driDriverExtensions"
639
640/**
Eric Anholtfcb57a82013-09-23 14:44:10 -0700641 * This symbol replaces the __DRI_DRIVER_EXTENSIONS symbol, and will be
642 * suffixed by "_drivername", allowing multiple drivers to be built into one
643 * library, and also giving the driver the chance to return a variable driver
644 * extensions struct depending on the driver name being loaded or any other
645 * system state.
646 *
647 * The function prototype is:
648 *
649 * const __DRIextension **__driDriverGetExtensions_drivername(void);
650 */
651#define __DRI_DRIVER_GET_EXTENSIONS "__driDriverGetExtensions"
652
653/**
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -0400654 * Tokens for __DRIconfig attribs. A number of attributes defined by
655 * GLX or EGL standards are not in the table, as they must be provided
656 * by the loader. For example, FBConfig ID or visual ID, drawable type.
657 */
658
659#define __DRI_ATTRIB_BUFFER_SIZE 1
660#define __DRI_ATTRIB_LEVEL 2
661#define __DRI_ATTRIB_RED_SIZE 3
662#define __DRI_ATTRIB_GREEN_SIZE 4
663#define __DRI_ATTRIB_BLUE_SIZE 5
664#define __DRI_ATTRIB_LUMINANCE_SIZE 6
665#define __DRI_ATTRIB_ALPHA_SIZE 7
666#define __DRI_ATTRIB_ALPHA_MASK_SIZE 8
667#define __DRI_ATTRIB_DEPTH_SIZE 9
668#define __DRI_ATTRIB_STENCIL_SIZE 10
669#define __DRI_ATTRIB_ACCUM_RED_SIZE 11
670#define __DRI_ATTRIB_ACCUM_GREEN_SIZE 12
671#define __DRI_ATTRIB_ACCUM_BLUE_SIZE 13
672#define __DRI_ATTRIB_ACCUM_ALPHA_SIZE 14
673#define __DRI_ATTRIB_SAMPLE_BUFFERS 15
674#define __DRI_ATTRIB_SAMPLES 16
675#define __DRI_ATTRIB_RENDER_TYPE 17
676#define __DRI_ATTRIB_CONFIG_CAVEAT 18
677#define __DRI_ATTRIB_CONFORMANT 19
678#define __DRI_ATTRIB_DOUBLE_BUFFER 20
679#define __DRI_ATTRIB_STEREO 21
680#define __DRI_ATTRIB_AUX_BUFFERS 22
681#define __DRI_ATTRIB_TRANSPARENT_TYPE 23
682#define __DRI_ATTRIB_TRANSPARENT_INDEX_VALUE 24
683#define __DRI_ATTRIB_TRANSPARENT_RED_VALUE 25
684#define __DRI_ATTRIB_TRANSPARENT_GREEN_VALUE 26
685#define __DRI_ATTRIB_TRANSPARENT_BLUE_VALUE 27
686#define __DRI_ATTRIB_TRANSPARENT_ALPHA_VALUE 28
687#define __DRI_ATTRIB_FLOAT_MODE 29
688#define __DRI_ATTRIB_RED_MASK 30
689#define __DRI_ATTRIB_GREEN_MASK 31
690#define __DRI_ATTRIB_BLUE_MASK 32
691#define __DRI_ATTRIB_ALPHA_MASK 33
692#define __DRI_ATTRIB_MAX_PBUFFER_WIDTH 34
693#define __DRI_ATTRIB_MAX_PBUFFER_HEIGHT 35
694#define __DRI_ATTRIB_MAX_PBUFFER_PIXELS 36
695#define __DRI_ATTRIB_OPTIMAL_PBUFFER_WIDTH 37
696#define __DRI_ATTRIB_OPTIMAL_PBUFFER_HEIGHT 38
697#define __DRI_ATTRIB_VISUAL_SELECT_GROUP 39
698#define __DRI_ATTRIB_SWAP_METHOD 40
699#define __DRI_ATTRIB_MAX_SWAP_INTERVAL 41
700#define __DRI_ATTRIB_MIN_SWAP_INTERVAL 42
701#define __DRI_ATTRIB_BIND_TO_TEXTURE_RGB 43
702#define __DRI_ATTRIB_BIND_TO_TEXTURE_RGBA 44
703#define __DRI_ATTRIB_BIND_TO_MIPMAP_TEXTURE 45
704#define __DRI_ATTRIB_BIND_TO_TEXTURE_TARGETS 46
705#define __DRI_ATTRIB_YINVERTED 47
Dave Airlie476db2b2011-01-28 11:44:51 +1000706#define __DRI_ATTRIB_FRAMEBUFFER_SRGB_CAPABLE 48
Emil Velikov2c60bf02017-05-01 19:37:56 +0100707#define __DRI_ATTRIB_MAX (__DRI_ATTRIB_FRAMEBUFFER_SRGB_CAPABLE + 1)
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -0400708
709/* __DRI_ATTRIB_RENDER_TYPE */
710#define __DRI_ATTRIB_RGBA_BIT 0x01
711#define __DRI_ATTRIB_COLOR_INDEX_BIT 0x02
712#define __DRI_ATTRIB_LUMINANCE_BIT 0x04
Tomasz Lisc37c3672013-07-17 13:49:21 +0200713#define __DRI_ATTRIB_FLOAT_BIT 0x08
714#define __DRI_ATTRIB_UNSIGNED_FLOAT_BIT 0x10
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -0400715
716/* __DRI_ATTRIB_CONFIG_CAVEAT */
717#define __DRI_ATTRIB_SLOW_BIT 0x01
718#define __DRI_ATTRIB_NON_CONFORMANT_CONFIG 0x02
719
720/* __DRI_ATTRIB_TRANSPARENT_TYPE */
721#define __DRI_ATTRIB_TRANSPARENT_RGB 0x00
722#define __DRI_ATTRIB_TRANSPARENT_INDEX 0x01
723
724/* __DRI_ATTRIB_BIND_TO_TEXTURE_TARGETS */
725#define __DRI_ATTRIB_TEXTURE_1D_BIT 0x01
726#define __DRI_ATTRIB_TEXTURE_2D_BIT 0x02
727#define __DRI_ATTRIB_TEXTURE_RECTANGLE_BIT 0x04
728
Thomas Hellstrom2437ebd2017-08-09 11:25:10 +0200729/* __DRI_ATTRIB_SWAP_METHOD */
730/* Note that with the exception of __DRI_ATTRIB_SWAP_NONE, we need to define
731 * the same tokens as GLX. This is because old and current X servers will
732 * transmit the driconf value grabbed from the AIGLX driver untranslated as
733 * the GLX fbconfig value. __DRI_ATTRIB_SWAP_NONE is only used by dri drivers
734 * to signal to the dri core that the driconfig is single-buffer.
735 */
736#define __DRI_ATTRIB_SWAP_NONE 0x0000
737#define __DRI_ATTRIB_SWAP_EXCHANGE 0x8061
738#define __DRI_ATTRIB_SWAP_COPY 0x8062
739#define __DRI_ATTRIB_SWAP_UNDEFINED 0x8063
740
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -0400741/**
742 * This extension defines the core DRI functionality.
Thomas Hellstrom08bee3e2017-08-09 10:50:23 +0200743 *
744 * Version >= 2 indicates that getConfigAttrib with __DRI_ATTRIB_SWAP_METHOD
745 * returns a reliable value.
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -0400746 */
747#define __DRI_CORE "DRI_Core"
Thomas Hellstrom08bee3e2017-08-09 10:50:23 +0200748#define __DRI_CORE_VERSION 2
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -0400749
750struct __DRIcoreExtensionRec {
751 __DRIextension base;
752
753 __DRIscreen *(*createNewScreen)(int screen, int fd,
754 unsigned int sarea_handle,
755 const __DRIextension **extensions,
756 const __DRIconfig ***driverConfigs,
757 void *loaderPrivate);
758
759 void (*destroyScreen)(__DRIscreen *screen);
760
761 const __DRIextension **(*getExtensions)(__DRIscreen *screen);
762
763 int (*getConfigAttrib)(const __DRIconfig *config,
764 unsigned int attrib,
765 unsigned int *value);
766
767 int (*indexConfigAttrib)(const __DRIconfig *config, int index,
768 unsigned int *attrib, unsigned int *value);
769
770 __DRIdrawable *(*createNewDrawable)(__DRIscreen *screen,
771 const __DRIconfig *config,
772 unsigned int drawable_id,
773 unsigned int head,
774 void *loaderPrivate);
775
776 void (*destroyDrawable)(__DRIdrawable *drawable);
777
778 void (*swapBuffers)(__DRIdrawable *drawable);
779
780 __DRIcontext *(*createNewContext)(__DRIscreen *screen,
781 const __DRIconfig *config,
782 __DRIcontext *shared,
783 void *loaderPrivate);
784
785 int (*copyContext)(__DRIcontext *dest,
786 __DRIcontext *src,
787 unsigned long mask);
788
789 void (*destroyContext)(__DRIcontext *context);
790
791 int (*bindContext)(__DRIcontext *ctx,
792 __DRIdrawable *pdraw,
793 __DRIdrawable *pread);
794
795 int (*unbindContext)(__DRIcontext *ctx);
796};
797
798/**
799 * Stored version of some component (i.e., server-side DRI module, kernel-side
800 * DRM, etc.).
801 *
802 * \todo
803 * There are several data structures that explicitly store a major version,
804 * minor version, and patch level. These structures should be modified to
805 * have a \c __DRIversionRec instead.
806 */
807struct __DRIversionRec {
808 int major; /**< Major version number. */
809 int minor; /**< Minor version number. */
810 int patch; /**< Patch-level. */
811};
812
Brian Paul192c9882004-03-22 23:31:29 +0000813/**
814 * Framebuffer information record. Used by libGL to communicate information
815 * about the framebuffer to the driver's \c __driCreateNewScreen function.
816 *
817 * In XFree86, most of this information is derrived from data returned by
818 * calling \c XF86DRIGetDeviceInfo.
819 *
820 * \sa XF86DRIGetDeviceInfo __DRIdisplayRec::createNewScreen
821 * __driUtilCreateNewScreen CallCreateNewScreen
822 *
823 * \bug This structure could be better named.
824 */
825struct __DRIframebufferRec {
826 unsigned char *base; /**< Framebuffer base address in the CPU's
827 * address space. This value is calculated by
828 * calling \c drmMap on the framebuffer handle
829 * returned by \c XF86DRIGetDeviceInfo (or a
830 * similar function).
831 */
832 int size; /**< Framebuffer size, in bytes. */
833 int stride; /**< Number of bytes from one line to the next. */
834 int width; /**< Pixel width of the framebuffer. */
835 int height; /**< Pixel height of the framebuffer. */
836 int dev_priv_size; /**< Size of the driver's dev-priv structure. */
837 void *dev_priv; /**< Pointer to the driver's dev-priv structure. */
838};
839
840
841/**
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -0400842 * This extension provides alternative screen, drawable and context
843 * constructors for legacy DRI functionality. This is used in
844 * conjunction with the core extension.
Brian Paul192c9882004-03-22 23:31:29 +0000845 */
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -0400846#define __DRI_LEGACY "DRI_Legacy"
847#define __DRI_LEGACY_VERSION 1
Brian Paul192c9882004-03-22 23:31:29 +0000848
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -0400849struct __DRIlegacyExtensionRec {
850 __DRIextension base;
Kristian Høgsbergf616a262007-05-15 12:31:31 -0400851
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -0400852 __DRIscreen *(*createNewScreen)(int screen,
853 const __DRIversion *ddx_version,
854 const __DRIversion *dri_version,
855 const __DRIversion *drm_version,
856 const __DRIframebuffer *frame_buffer,
857 void *pSAREA, int fd,
858 const __DRIextension **extensions,
859 const __DRIconfig ***driver_configs,
860 void *loaderPrivate);
Brian Paul192c9882004-03-22 23:31:29 +0000861
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -0400862 __DRIdrawable *(*createNewDrawable)(__DRIscreen *screen,
863 const __DRIconfig *config,
864 drm_drawable_t hwDrawable,
865 int renderType, const int *attrs,
866 void *loaderPrivate);
Brian Paul192c9882004-03-22 23:31:29 +0000867
Kristian Høgsberge82dd8c2008-03-26 19:26:59 -0400868 __DRIcontext *(*createNewContext)(__DRIscreen *screen,
869 const __DRIconfig *config,
870 int render_type,
871 __DRIcontext *shared,
872 drm_context_t hwContext,
873 void *loaderPrivate);
Brian Paul192c9882004-03-22 23:31:29 +0000874};
Keith Whitwell74d563c2004-04-29 12:23:39 +0000875
George Sapountzis280bf892008-05-11 14:43:40 +0300876/**
877 * This extension provides alternative screen, drawable and context
878 * constructors for swrast DRI functionality. This is used in
879 * conjunction with the core extension.
880 */
881#define __DRI_SWRAST "DRI_SWRast"
Eric Anholtf93533d2013-09-27 11:39:25 -0700882#define __DRI_SWRAST_VERSION 4
George Sapountzis280bf892008-05-11 14:43:40 +0300883
884struct __DRIswrastExtensionRec {
885 __DRIextension base;
886
887 __DRIscreen *(*createNewScreen)(int screen,
888 const __DRIextension **extensions,
889 const __DRIconfig ***driver_configs,
890 void *loaderPrivate);
891
892 __DRIdrawable *(*createNewDrawable)(__DRIscreen *screen,
893 const __DRIconfig *config,
894 void *loaderPrivate);
Haitao Fengb43a1472011-01-30 16:03:35 +0800895
896 /* Since version 2 */
897 __DRIcontext *(*createNewContextForAPI)(__DRIscreen *screen,
898 int api,
899 const __DRIconfig *config,
900 __DRIcontext *shared,
901 void *data);
Ian Romanickb5b20812011-12-01 13:56:38 -0800902
903 /**
904 * Create a context for a particular API with a set of attributes
905 *
906 * \since version 3
907 *
908 * \sa __DRIdri2ExtensionRec::createContextAttribs
909 */
910 __DRIcontext *(*createContextAttribs)(__DRIscreen *screen,
911 int api,
912 const __DRIconfig *config,
913 __DRIcontext *shared,
914 unsigned num_attribs,
915 const uint32_t *attribs,
916 unsigned *error,
917 void *loaderPrivate);
Eric Anholtf93533d2013-09-27 11:39:25 -0700918
919 /**
920 * createNewScreen() with the driver extensions passed in.
921 *
922 * \since version 4
923 */
924 __DRIscreen *(*createNewScreen2)(int screen,
925 const __DRIextension **loader_extensions,
926 const __DRIextension **driver_extensions,
927 const __DRIconfig ***driver_configs,
928 void *loaderPrivate);
929
George Sapountzis280bf892008-05-11 14:43:40 +0300930};
931
Keith Packardf66a6c52013-06-03 20:49:25 -0700932/** Common DRI function definitions, shared among DRI2 and Image extensions
933 */
934
935typedef __DRIscreen *
936(*__DRIcreateNewScreen2Func)(int screen, int fd,
937 const __DRIextension **extensions,
938 const __DRIextension **driver_extensions,
939 const __DRIconfig ***driver_configs,
940 void *loaderPrivate);
941
942typedef __DRIdrawable *
943(*__DRIcreateNewDrawableFunc)(__DRIscreen *screen,
944 const __DRIconfig *config,
945 void *loaderPrivate);
946
947typedef __DRIcontext *
Keith Packardf66a6c52013-06-03 20:49:25 -0700948(*__DRIcreateContextAttribsFunc)(__DRIscreen *screen,
949 int api,
950 const __DRIconfig *config,
951 __DRIcontext *shared,
952 unsigned num_attribs,
953 const uint32_t *attribs,
954 unsigned *error,
955 void *loaderPrivate);
956
957typedef unsigned int
958(*__DRIgetAPIMaskFunc)(__DRIscreen *screen);
959
Kristian Høgsbergf56b5692008-08-13 11:46:25 -0400960/**
961 * DRI2 Loader extension.
962 */
963#define __DRI_BUFFER_FRONT_LEFT 0
964#define __DRI_BUFFER_BACK_LEFT 1
965#define __DRI_BUFFER_FRONT_RIGHT 2
966#define __DRI_BUFFER_BACK_RIGHT 3
967#define __DRI_BUFFER_DEPTH 4
968#define __DRI_BUFFER_STENCIL 5
969#define __DRI_BUFFER_ACCUM 6
Alan Hourihane396711b2009-01-19 15:40:30 +0000970#define __DRI_BUFFER_FAKE_FRONT_LEFT 7
971#define __DRI_BUFFER_FAKE_FRONT_RIGHT 8
Ian Romanickdbf87f22009-04-20 20:55:56 -0700972#define __DRI_BUFFER_DEPTH_STENCIL 9 /**< Only available with DRI2 1.1 */
Chad Versace4501a5d2011-05-26 16:50:30 -0700973#define __DRI_BUFFER_HIZ 10
Kristian Høgsbergf56b5692008-08-13 11:46:25 -0400974
Benjamin Franzke8c409402011-08-15 09:50:19 +0200975/* Inofficial and for internal use. Increase when adding a new buffer token. */
976#define __DRI_BUFFER_COUNT 11
977
Kristian Høgsbergf56b5692008-08-13 11:46:25 -0400978struct __DRIbufferRec {
979 unsigned int attachment;
980 unsigned int name;
981 unsigned int pitch;
982 unsigned int cpp;
983 unsigned int flags;
984};
985
986#define __DRI_DRI2_LOADER "DRI_DRI2Loader"
Marek Olšák1bf703e2017-07-28 17:30:34 +0200987#define __DRI_DRI2_LOADER_VERSION 4
988
989enum dri_loader_cap {
990 /* Whether the loader handles RGBA channel ordering correctly. If not,
991 * only BGRA ordering can be exposed.
992 */
993 DRI_LOADER_CAP_RGBA_ORDERING,
994};
995
Kristian Høgsbergf56b5692008-08-13 11:46:25 -0400996struct __DRIdri2LoaderExtensionRec {
997 __DRIextension base;
998
999 __DRIbuffer *(*getBuffers)(__DRIdrawable *driDrawable,
1000 int *width, int *height,
1001 unsigned int *attachments, int count,
1002 int *out_count, void *loaderPrivate);
Ian Romanick82634ee2009-04-06 12:44:18 -07001003
1004 /**
1005 * Flush pending front-buffer rendering
1006 *
1007 * Any rendering that has been performed to the
1008 * \c __DRI_BUFFER_FAKE_FRONT_LEFT will be flushed to the
1009 * \c __DRI_BUFFER_FRONT_LEFT.
1010 *
1011 * \param driDrawable Drawable whose front-buffer is to be flushed
1012 * \param loaderPrivate Loader's private data that was previously passed
1013 * into __DRIdri2ExtensionRec::createNewDrawable
Emil Velikov6dffab22014-02-12 19:05:08 +00001014 *
1015 * \since 2
Ian Romanick82634ee2009-04-06 12:44:18 -07001016 */
1017 void (*flushFrontBuffer)(__DRIdrawable *driDrawable, void *loaderPrivate);
Ian Romanickdbf87f22009-04-20 20:55:56 -07001018
1019
1020 /**
1021 * Get list of buffers from the server
1022 *
1023 * Gets a list of buffer for the specified set of attachments. Unlike
1024 * \c ::getBuffers, this function takes a list of attachments paired with
1025 * opaque \c unsigned \c int value describing the format of the buffer.
1026 * It is the responsibility of the caller to know what the service that
1027 * allocates the buffers will expect to receive for the format.
1028 *
1029 * \param driDrawable Drawable whose buffers are being queried.
1030 * \param width Output where the width of the buffers is stored.
1031 * \param height Output where the height of the buffers is stored.
1032 * \param attachments List of pairs of attachment ID and opaque format
1033 * requested for the drawable.
1034 * \param count Number of attachment / format pairs stored in
1035 * \c attachments.
1036 * \param loaderPrivate Loader's private data that was previously passed
1037 * into __DRIdri2ExtensionRec::createNewDrawable.
Emil Velikov6dffab22014-02-12 19:05:08 +00001038 *
1039 * \since 3
Ian Romanickdbf87f22009-04-20 20:55:56 -07001040 */
1041 __DRIbuffer *(*getBuffersWithFormat)(__DRIdrawable *driDrawable,
1042 int *width, int *height,
1043 unsigned int *attachments, int count,
1044 int *out_count, void *loaderPrivate);
Marek Olšák1bf703e2017-07-28 17:30:34 +02001045
1046 /**
1047 * Return a loader capability value. If the loader doesn't know the enum,
1048 * it will return 0.
1049 *
Marek Olšák6d37bcd2017-07-31 18:21:15 +02001050 * \param loaderPrivate The last parameter of createNewScreen or
1051 * createNewScreen2.
1052 * \param cap See the enum.
1053 *
Marek Olšák1bf703e2017-07-28 17:30:34 +02001054 * \since 4
1055 */
1056 unsigned (*getCapability)(void *loaderPrivate, enum dri_loader_cap cap);
Kristian Høgsbergf56b5692008-08-13 11:46:25 -04001057};
1058
1059/**
1060 * This extension provides alternative screen, drawable and context
1061 * constructors for DRI2.
1062 */
1063#define __DRI_DRI2 "DRI_DRI2"
Eric Anholtf93533d2013-09-27 11:39:25 -07001064#define __DRI_DRI2_VERSION 4
Kristian Høgsberga7a9a912010-04-27 11:04:51 -04001065
Ian Romanick1ab54542011-11-30 12:16:19 -08001066#define __DRI_API_OPENGL 0 /**< OpenGL compatibility profile */
Ian Romanicka2ce2eb2012-07-18 14:29:29 -07001067#define __DRI_API_GLES 1 /**< OpenGL ES 1.x */
Chad Versacee90c08e2012-11-20 13:27:14 -08001068#define __DRI_API_GLES2 2 /**< OpenGL ES 2.x */
Ian Romanick1ab54542011-11-30 12:16:19 -08001069#define __DRI_API_OPENGL_CORE 3 /**< OpenGL 3.2+ core profile */
Chad Versacee90c08e2012-11-20 13:27:14 -08001070#define __DRI_API_GLES3 4 /**< OpenGL ES 3.x */
Ian Romanick1ab54542011-11-30 12:16:19 -08001071
1072#define __DRI_CTX_ATTRIB_MAJOR_VERSION 0
1073#define __DRI_CTX_ATTRIB_MINOR_VERSION 1
1074#define __DRI_CTX_ATTRIB_FLAGS 2
1075
Ian Romanicka8724d82012-07-03 11:32:59 -07001076/**
1077 * \requires __DRI2_ROBUSTNESS.
1078 */
1079#define __DRI_CTX_ATTRIB_RESET_STRATEGY 3
1080
Ian Romanick1ab54542011-11-30 12:16:19 -08001081#define __DRI_CTX_FLAG_DEBUG 0x00000001
1082#define __DRI_CTX_FLAG_FORWARD_COMPATIBLE 0x00000002
1083
1084/**
Ian Romanicka8724d82012-07-03 11:32:59 -07001085 * \requires __DRI2_ROBUSTNESS.
1086 */
1087#define __DRI_CTX_FLAG_ROBUST_BUFFER_ACCESS 0x00000004
1088
1089/**
Grigori Goronzy7299e822017-06-29 03:24:15 +02001090 * \requires __DRI2_NO_ERROR.
1091 *
1092 */
1093#define __DRI_CTX_FLAG_NO_ERROR 0x00000008
1094
1095/**
Ian Romanicka8724d82012-07-03 11:32:59 -07001096 * \name Context reset strategies.
1097 */
1098/*@{*/
1099#define __DRI_CTX_RESET_NO_NOTIFICATION 0
1100#define __DRI_CTX_RESET_LOSE_CONTEXT 1
1101/*@}*/
1102
1103/**
Ian Romanick1ab54542011-11-30 12:16:19 -08001104 * \name Reasons that __DRIdri2Extension::createContextAttribs might fail
1105 */
1106/*@{*/
1107/** Success! */
1108#define __DRI_CTX_ERROR_SUCCESS 0
1109
1110/** Memory allocation failure */
1111#define __DRI_CTX_ERROR_NO_MEMORY 1
1112
1113/** Client requested an API (e.g., OpenGL ES 2.0) that the driver can't do. */
1114#define __DRI_CTX_ERROR_BAD_API 2
1115
1116/** Client requested an API version that the driver can't do. */
1117#define __DRI_CTX_ERROR_BAD_VERSION 3
1118
1119/** Client requested a flag or combination of flags the driver can't do. */
1120#define __DRI_CTX_ERROR_BAD_FLAG 4
1121
1122/** Client requested an attribute the driver doesn't understand. */
1123#define __DRI_CTX_ERROR_UNKNOWN_ATTRIBUTE 5
1124
1125/** Client requested a flag the driver doesn't understand. */
1126#define __DRI_CTX_ERROR_UNKNOWN_FLAG 6
1127/*@}*/
Kristian Høgsbergf56b5692008-08-13 11:46:25 -04001128
1129struct __DRIdri2ExtensionRec {
1130 __DRIextension base;
1131
1132 __DRIscreen *(*createNewScreen)(int screen, int fd,
1133 const __DRIextension **extensions,
1134 const __DRIconfig ***driver_configs,
1135 void *loaderPrivate);
1136
Keith Packardf66a6c52013-06-03 20:49:25 -07001137 __DRIcreateNewDrawableFunc createNewDrawable;
Kristian Høgsberge0489532013-11-11 16:35:35 -08001138 __DRIcontext *(*createNewContext)(__DRIscreen *screen,
1139 const __DRIconfig *config,
1140 __DRIcontext *shared,
1141 void *loaderPrivate);
Kristian Høgsbergf56b5692008-08-13 11:46:25 -04001142
Kristian Høgsberga7a9a912010-04-27 11:04:51 -04001143 /* Since version 2 */
Keith Packardf66a6c52013-06-03 20:49:25 -07001144 __DRIgetAPIMaskFunc getAPIMask;
Kristian Høgsberga7a9a912010-04-27 11:04:51 -04001145
1146 __DRIcontext *(*createNewContextForAPI)(__DRIscreen *screen,
1147 int api,
1148 const __DRIconfig *config,
1149 __DRIcontext *shared,
1150 void *data);
Benjamin Franzke1b8ef942011-02-04 11:59:12 +01001151
1152 __DRIbuffer *(*allocateBuffer)(__DRIscreen *screen,
1153 unsigned int attachment,
1154 unsigned int format,
1155 int width,
1156 int height);
1157 void (*releaseBuffer)(__DRIscreen *screen,
1158 __DRIbuffer *buffer);
Ian Romanick1ab54542011-11-30 12:16:19 -08001159
1160 /**
1161 * Create a context for a particular API with a set of attributes
1162 *
1163 * \since version 3
Ian Romanickb5b20812011-12-01 13:56:38 -08001164 *
1165 * \sa __DRIswrastExtensionRec::createContextAttribs
Ian Romanick1ab54542011-11-30 12:16:19 -08001166 */
Keith Packardf66a6c52013-06-03 20:49:25 -07001167 __DRIcreateContextAttribsFunc createContextAttribs;
Eric Anholtf93533d2013-09-27 11:39:25 -07001168
1169 /**
1170 * createNewScreen with the driver's extension list passed in.
1171 *
1172 * \since version 4
1173 */
Keith Packardf66a6c52013-06-03 20:49:25 -07001174 __DRIcreateNewScreen2Func createNewScreen2;
Kristian Høgsbergf56b5692008-08-13 11:46:25 -04001175};
1176
Kristian Høgsberg79cbcb62010-02-11 17:45:24 -05001177
1178/**
1179 * This extension provides functionality to enable various EGLImage
1180 * extensions.
1181 */
1182#define __DRI_IMAGE "DRI_IMAGE"
Nicolai Hähnlef12e1c52017-10-10 13:58:46 +02001183#define __DRI_IMAGE_VERSION 17
Kristian Høgsberg79cbcb62010-02-11 17:45:24 -05001184
1185/**
1186 * These formats correspond to the similarly named MESA_FORMAT_*
1187 * tokens, except in the native endian of the CPU. For example, on
1188 * little endian __DRI_IMAGE_FORMAT_XRGB8888 corresponds to
1189 * MESA_FORMAT_XRGB8888, but MESA_FORMAT_XRGB8888_REV on big endian.
Kristian Høgsbergc0298342012-07-04 22:56:09 -04001190 *
1191 * __DRI_IMAGE_FORMAT_NONE is for images that aren't directly usable
1192 * by the driver (YUV planar formats) but serve as a base image for
1193 * creating sub-images for the different planes within the image.
Jakob Bornecrantz6a7dea92012-08-31 19:48:26 +02001194 *
Gwan-gyeong Munc8759452017-08-11 01:18:57 +09001195 * R8, GR88 and NONE should not be used with createImageFromName or
Jakob Bornecrantz6a7dea92012-08-31 19:48:26 +02001196 * createImage, and are returned by query from sub images created with
1197 * createImageFromNames (NONE, see above) and fromPlane (R8 & GR88).
Kristian Høgsberg79cbcb62010-02-11 17:45:24 -05001198 */
1199#define __DRI_IMAGE_FORMAT_RGB565 0x1001
1200#define __DRI_IMAGE_FORMAT_XRGB8888 0x1002
1201#define __DRI_IMAGE_FORMAT_ARGB8888 0x1003
Chia-I Wue3cf7b62011-08-21 21:22:41 +08001202#define __DRI_IMAGE_FORMAT_ABGR8888 0x1004
Sean V Kelley81f95ce2012-04-24 07:49:09 -07001203#define __DRI_IMAGE_FORMAT_XBGR8888 0x1005
Kristian Høgsbergc0298342012-07-04 22:56:09 -04001204#define __DRI_IMAGE_FORMAT_R8 0x1006 /* Since version 5 */
1205#define __DRI_IMAGE_FORMAT_GR88 0x1007
1206#define __DRI_IMAGE_FORMAT_NONE 0x1008
Kristian Høgsberg3160ec32013-09-14 23:31:08 -07001207#define __DRI_IMAGE_FORMAT_XRGB2101010 0x1009
1208#define __DRI_IMAGE_FORMAT_ARGB2101010 0x100a
Keith Packardaba6b842013-11-04 17:27:43 -08001209#define __DRI_IMAGE_FORMAT_SARGB8 0x100b
Chad Versace9aa6ab02016-12-22 14:44:47 -08001210#define __DRI_IMAGE_FORMAT_ARGB1555 0x100c
Rainer Hochecker09b140a2017-01-05 16:58:56 +01001211#define __DRI_IMAGE_FORMAT_R16 0x100d
1212#define __DRI_IMAGE_FORMAT_GR1616 0x100e
Kristian Høgsberg79cbcb62010-02-11 17:45:24 -05001213
Kristian Høgsberg5aaa53e2010-06-03 21:36:40 -04001214#define __DRI_IMAGE_USE_SHARE 0x0001
1215#define __DRI_IMAGE_USE_SCANOUT 0x0002
Eric Engestrom39f3e252017-08-17 10:09:21 +01001216#define __DRI_IMAGE_USE_CURSOR 0x0004 /* Deprecated */
Axel Davye8f91952013-08-15 12:47:58 +02001217#define __DRI_IMAGE_USE_LINEAR 0x0008
Axel Davyd943ac42015-10-21 12:28:00 +02001218/* The buffer will only be read by an external process after SwapBuffers,
1219 * in contrary to gbm buffers, front buffers and fake front buffers, which
1220 * could be read after a flush."
1221 */
1222#define __DRI_IMAGE_USE_BACKBUFFER 0x0010
Kristian Høgsberg5aaa53e2010-06-03 21:36:40 -04001223
Jakob Bornecrantz6a7dea92012-08-31 19:48:26 +02001224
Rob Herringa0f06f12016-05-03 21:02:43 -05001225#define __DRI_IMAGE_TRANSFER_READ 0x1
1226#define __DRI_IMAGE_TRANSFER_WRITE 0x2
1227#define __DRI_IMAGE_TRANSFER_READ_WRITE \
1228 (__DRI_IMAGE_TRANSFER_READ | __DRI_IMAGE_TRANSFER_WRITE)
1229
Jakob Bornecrantz6a7dea92012-08-31 19:48:26 +02001230/**
Chad Versace56f1f472015-06-23 15:48:40 -07001231 * Four CC formats that matches with WL_DRM_FORMAT_* from wayland_drm.h,
1232 * GBM_FORMAT_* from gbm.h, and DRM_FORMAT_* from drm_fourcc.h. Used with
1233 * createImageFromNames.
Jakob Bornecrantz6a7dea92012-08-31 19:48:26 +02001234 *
1235 * \since 5
1236 */
1237
Chad Versace56f1f472015-06-23 15:48:40 -07001238#define __DRI_IMAGE_FOURCC_R8 0x20203852
1239#define __DRI_IMAGE_FOURCC_GR88 0x38385247
Chad Versace9aa6ab02016-12-22 14:44:47 -08001240#define __DRI_IMAGE_FOURCC_ARGB1555 0x35315241
Rainer Hochecker09b140a2017-01-05 16:58:56 +01001241#define __DRI_IMAGE_FOURCC_R16 0x20363152
1242#define __DRI_IMAGE_FOURCC_GR1616 0x32335247
Jakob Bornecrantz6a7dea92012-08-31 19:48:26 +02001243#define __DRI_IMAGE_FOURCC_RGB565 0x36314752
1244#define __DRI_IMAGE_FOURCC_ARGB8888 0x34325241
1245#define __DRI_IMAGE_FOURCC_XRGB8888 0x34325258
1246#define __DRI_IMAGE_FOURCC_ABGR8888 0x34324241
1247#define __DRI_IMAGE_FOURCC_XBGR8888 0x34324258
Keith Packardaea47572013-11-21 20:08:35 -08001248#define __DRI_IMAGE_FOURCC_SARGB8888 0x83324258
Jakob Bornecrantz6a7dea92012-08-31 19:48:26 +02001249#define __DRI_IMAGE_FOURCC_YUV410 0x39565559
1250#define __DRI_IMAGE_FOURCC_YUV411 0x31315559
1251#define __DRI_IMAGE_FOURCC_YUV420 0x32315559
1252#define __DRI_IMAGE_FOURCC_YUV422 0x36315559
1253#define __DRI_IMAGE_FOURCC_YUV444 0x34325559
1254#define __DRI_IMAGE_FOURCC_NV12 0x3231564e
1255#define __DRI_IMAGE_FOURCC_NV16 0x3631564e
1256#define __DRI_IMAGE_FOURCC_YUYV 0x56595559
Johnson Lin194205c2017-06-16 13:34:02 +08001257#define __DRI_IMAGE_FOURCC_UYVY 0x59565955
Jakob Bornecrantz6a7dea92012-08-31 19:48:26 +02001258
Kristian Høgsberg Kristensen2bb935b2016-04-27 15:00:54 -07001259#define __DRI_IMAGE_FOURCC_YVU410 0x39555659
1260#define __DRI_IMAGE_FOURCC_YVU411 0x31315659
1261#define __DRI_IMAGE_FOURCC_YVU420 0x32315659
1262#define __DRI_IMAGE_FOURCC_YVU422 0x36315659
1263#define __DRI_IMAGE_FOURCC_YVU444 0x34325659
Jakob Bornecrantz6a7dea92012-08-31 19:48:26 +02001264
1265/**
1266 * Queryable on images created by createImageFromNames.
1267 *
1268 * RGB and RGBA are may be usable directly as images but its still
1269 * recommended to call fromPlanar with plane == 0.
1270 *
Johnson Lin194205c2017-06-16 13:34:02 +08001271 * Y_U_V, Y_UV,Y_XUXV and Y_UXVX all requires call to fromPlanar to create
Jakob Bornecrantz6a7dea92012-08-31 19:48:26 +02001272 * usable sub-images, sampling from images return raw YUV data and
1273 * color conversion needs to be done in the shader.
1274 *
1275 * \since 5
1276 */
1277
1278#define __DRI_IMAGE_COMPONENTS_RGB 0x3001
1279#define __DRI_IMAGE_COMPONENTS_RGBA 0x3002
1280#define __DRI_IMAGE_COMPONENTS_Y_U_V 0x3003
1281#define __DRI_IMAGE_COMPONENTS_Y_UV 0x3004
1282#define __DRI_IMAGE_COMPONENTS_Y_XUXV 0x3005
Johnson Lin194205c2017-06-16 13:34:02 +08001283#define __DRI_IMAGE_COMPONENTS_Y_UXVX 0x3008
Chad Versace56f1f472015-06-23 15:48:40 -07001284#define __DRI_IMAGE_COMPONENTS_R 0x3006
1285#define __DRI_IMAGE_COMPONENTS_RG 0x3007
Jakob Bornecrantz6a7dea92012-08-31 19:48:26 +02001286
1287
Kristian Høgsberg5aaa53e2010-06-03 21:36:40 -04001288/**
1289 * queryImage attributes
1290 */
1291
1292#define __DRI_IMAGE_ATTRIB_STRIDE 0x2000
1293#define __DRI_IMAGE_ATTRIB_HANDLE 0x2001
1294#define __DRI_IMAGE_ATTRIB_NAME 0x2002
Jesse Barnes8de5c352012-02-21 12:53:09 -08001295#define __DRI_IMAGE_ATTRIB_FORMAT 0x2003 /* available in versions 3+ */
Jakob Bornecrantz93ebec82012-08-21 18:01:55 +02001296#define __DRI_IMAGE_ATTRIB_WIDTH 0x2004 /* available in versions 4+ */
Kristian Høgsberg44f066b2012-07-13 11:19:24 -04001297#define __DRI_IMAGE_ATTRIB_HEIGHT 0x2005
Jakob Bornecrantz6a7dea92012-08-31 19:48:26 +02001298#define __DRI_IMAGE_ATTRIB_COMPONENTS 0x2006 /* available in versions 5+ */
Kristian Høgsberg2356e282013-02-02 08:38:07 -05001299#define __DRI_IMAGE_ATTRIB_FD 0x2007 /* available in versions
1300 * 7+. Each query will return a
1301 * new fd. */
Dave Airlie8f7338f2014-03-03 13:57:16 +10001302#define __DRI_IMAGE_ATTRIB_FOURCC 0x2008 /* available in versions 11 */
1303#define __DRI_IMAGE_ATTRIB_NUM_PLANES 0x2009 /* available in versions 11 */
Kristian Høgsberg5aaa53e2010-06-03 21:36:40 -04001304
Chuanbo Weng1ceb7752016-09-14 01:07:02 +08001305#define __DRI_IMAGE_ATTRIB_OFFSET 0x200A /* available in versions 13 */
Ben Widawskyd075cce2016-11-04 11:31:15 -07001306#define __DRI_IMAGE_ATTRIB_MODIFIER_LOWER 0x200B /* available in versions 14 */
1307#define __DRI_IMAGE_ATTRIB_MODIFIER_UPPER 0x200C /* available in versions 14 */
Chuanbo Weng1ceb7752016-09-14 01:07:02 +08001308
Topi Pohjolainen674dedc2013-03-26 15:14:20 +02001309enum __DRIYUVColorSpace {
1310 __DRI_YUV_COLOR_SPACE_UNDEFINED = 0,
1311 __DRI_YUV_COLOR_SPACE_ITU_REC601 = 0x327F,
1312 __DRI_YUV_COLOR_SPACE_ITU_REC709 = 0x3280,
1313 __DRI_YUV_COLOR_SPACE_ITU_REC2020 = 0x3281
1314};
1315
1316enum __DRISampleRange {
1317 __DRI_YUV_RANGE_UNDEFINED = 0,
1318 __DRI_YUV_FULL_RANGE = 0x3282,
1319 __DRI_YUV_NARROW_RANGE = 0x3283
1320};
1321
1322enum __DRIChromaSiting {
1323 __DRI_YUV_CHROMA_SITING_UNDEFINED = 0,
1324 __DRI_YUV_CHROMA_SITING_0 = 0x3284,
1325 __DRI_YUV_CHROMA_SITING_0_5 = 0x3285
1326};
1327
Abdiel Janulgue7b7af482012-11-27 15:19:54 +02001328/**
Frank Binnscfc32002015-07-31 09:11:46 +01001329 * \name Reasons that __DRIimageExtensionRec::createImageFromTexture or
1330 * __DRIimageExtensionRec::createImageFromDmaBufs might fail
Abdiel Janulgue7b7af482012-11-27 15:19:54 +02001331 */
1332/*@{*/
1333/** Success! */
1334#define __DRI_IMAGE_ERROR_SUCCESS 0
1335
1336/** Memory allocation failure */
1337#define __DRI_IMAGE_ERROR_BAD_ALLOC 1
1338
Frank Binnscfc32002015-07-31 09:11:46 +01001339/** Client requested an invalid attribute */
Abdiel Janulgue7b7af482012-11-27 15:19:54 +02001340#define __DRI_IMAGE_ERROR_BAD_MATCH 2
1341
1342/** Client requested an invalid texture object */
1343#define __DRI_IMAGE_ERROR_BAD_PARAMETER 3
Frank Binnscfc32002015-07-31 09:11:46 +01001344
1345/** Client requested an invalid pitch and/or offset */
1346#define __DRI_IMAGE_ERROR_BAD_ACCESS 4
Abdiel Janulgue7b7af482012-11-27 15:19:54 +02001347/*@}*/
1348
Axel Davy8a66a5d2014-06-18 23:27:35 -04001349/**
Giovanni Campagnae57ad3d2014-07-23 19:28:52 +01001350 * \name Capabilities that might be returned by __DRIimageExtensionRec::getCapabilities
1351 */
1352/*@{*/
1353#define __DRI_IMAGE_CAP_GLOBAL_NAMES 1
1354/*@}*/
1355
1356/**
Axel Davy8a66a5d2014-06-18 23:27:35 -04001357 * blitImage flags
1358 */
1359
1360#define __BLIT_FLAG_FLUSH 0x0001
1361#define __BLIT_FLAG_FINISH 0x0002
1362
Jason Ekstrand0a25a4172017-08-16 11:53:38 -07001363/**
1364 * queryDmaBufFormatModifierAttribs attributes
1365 */
1366
1367/* Available in version 16 */
1368#define __DRI_IMAGE_FORMAT_MODIFIER_ATTRIB_PLANE_COUNT 0x0001
1369
Kristian Høgsberg79cbcb62010-02-11 17:45:24 -05001370typedef struct __DRIimageRec __DRIimage;
1371typedef struct __DRIimageExtensionRec __DRIimageExtension;
1372struct __DRIimageExtensionRec {
1373 __DRIextension base;
1374
Kristian Høgsberg9ec0b2a2010-09-22 15:07:15 -04001375 __DRIimage *(*createImageFromName)(__DRIscreen *screen,
Kristian Høgsberg79cbcb62010-02-11 17:45:24 -05001376 int width, int height, int format,
1377 int name, int pitch,
1378 void *loaderPrivate);
1379
Nicolai Hähnlef12e1c52017-10-10 13:58:46 +02001380 /* Deprecated since version 17; see createImageFromRenderbuffer2 */
Kristian Høgsberg79cbcb62010-02-11 17:45:24 -05001381 __DRIimage *(*createImageFromRenderbuffer)(__DRIcontext *context,
1382 int renderbuffer,
1383 void *loaderPrivate);
1384
1385 void (*destroyImage)(__DRIimage *image);
Kristian Høgsberg5aaa53e2010-06-03 21:36:40 -04001386
1387 __DRIimage *(*createImage)(__DRIscreen *screen,
1388 int width, int height, int format,
1389 unsigned int use,
1390 void *loaderPrivate);
1391
1392 GLboolean (*queryImage)(__DRIimage *image, int attrib, int *value);
Benjamin Franzke5fbbd4c2011-03-09 20:47:42 +01001393
1394 /**
1395 * The new __DRIimage will share the content with the old one, see dup(2).
1396 */
1397 __DRIimage *(*dupImage)(__DRIimage *image, void *loaderPrivate);
Kristian Høgsberg221c6782012-01-18 15:32:35 -05001398
1399 /**
1400 * Validate that a __DRIimage can be used a certain way.
1401 *
1402 * \since 2
1403 */
1404 GLboolean (*validateUsage)(__DRIimage *image, unsigned int use);
Kristian Høgsberg4fddb2b2012-05-02 15:30:13 -04001405
1406 /**
Jakob Bornecrantz6a7dea92012-08-31 19:48:26 +02001407 * Unlike createImageFromName __DRI_IMAGE_FORMAT is not but instead
1408 * __DRI_IMAGE_FOURCC and strides are in bytes not pixels. Stride is
1409 * also per block and not per pixel (for non-RGB, see gallium blocks).
1410 *
1411 * \since 5
1412 */
1413 __DRIimage *(*createImageFromNames)(__DRIscreen *screen,
1414 int width, int height, int fourcc,
1415 int *names, int num_names,
1416 int *strides, int *offsets,
1417 void *loaderPrivate);
1418
1419 /**
Kristian Høgsbergc0298342012-07-04 22:56:09 -04001420 * Create an image out of a sub-region of a parent image. This
1421 * entry point lets us create individual __DRIimages for different
1422 * planes in a planar buffer (typically yuv), for example. While a
1423 * sub-image shares the underlying buffer object with the parent
1424 * image and other sibling sub-images, the life times of parent and
1425 * sub-images are not dependent. Destroying the parent or a
1426 * sub-image doesn't affect other images. The underlying buffer
1427 * object is free when no __DRIimage remains that references it.
1428 *
1429 * Sub-images may overlap, but rendering to overlapping sub-images
1430 * is undefined.
1431 *
1432 * \since 5
1433 */
Jakob Bornecrantz6a7dea92012-08-31 19:48:26 +02001434 __DRIimage *(*fromPlanar)(__DRIimage *image, int plane,
1435 void *loaderPrivate);
Abdiel Janulgue7b7af482012-11-27 15:19:54 +02001436
1437 /**
1438 * Create image from texture.
1439 *
1440 * \since 6
1441 */
1442 __DRIimage *(*createImageFromTexture)(__DRIcontext *context,
1443 int target,
1444 unsigned texture,
1445 int depth,
1446 int level,
1447 unsigned *error,
1448 void *loaderPrivate);
Kristian Høgsberg2356e282013-02-02 08:38:07 -05001449 /**
1450 * Like createImageFromNames, but takes a prime fd instead.
1451 *
1452 * \since 7
1453 */
1454 __DRIimage *(*createImageFromFds)(__DRIscreen *screen,
1455 int width, int height, int fourcc,
1456 int *fds, int num_fds,
1457 int *strides, int *offsets,
1458 void *loaderPrivate);
Topi Pohjolainen674dedc2013-03-26 15:14:20 +02001459
1460 /**
1461 * Like createImageFromFds, but takes additional attributes.
1462 *
1463 * For EGL_EXT_image_dma_buf_import.
1464 *
1465 * \since 8
1466 */
1467 __DRIimage *(*createImageFromDmaBufs)(__DRIscreen *screen,
1468 int width, int height, int fourcc,
1469 int *fds, int num_fds,
1470 int *strides, int *offsets,
1471 enum __DRIYUVColorSpace color_space,
1472 enum __DRISampleRange sample_range,
1473 enum __DRIChromaSiting horiz_siting,
1474 enum __DRIChromaSiting vert_siting,
1475 unsigned *error,
1476 void *loaderPrivate);
Axel Davy8a66a5d2014-06-18 23:27:35 -04001477
1478 /**
1479 * Blit a part of a __DRIimage to another and flushes
1480 *
1481 * flush_flag:
1482 * 0: no flush
1483 * __BLIT_FLAG_FLUSH: flush after the blit operation
1484 * __BLIT_FLAG_FINISH: flush and wait the blit finished
1485 *
1486 * \since 9
1487 */
1488 void (*blitImage)(__DRIcontext *context, __DRIimage *dst, __DRIimage *src,
1489 int dstx0, int dsty0, int dstwidth, int dstheight,
1490 int srcx0, int srcy0, int srcwidth, int srcheight,
1491 int flush_flag);
Giovanni Campagnae57ad3d2014-07-23 19:28:52 +01001492
1493 /**
1494 * Query for general capabilities of the driver that concern
1495 * buffer sharing and image importing.
1496 *
1497 * \since 10
1498 */
1499 int (*getCapabilities)(__DRIscreen *screen);
Rob Herringa0f06f12016-05-03 21:02:43 -05001500
1501 /**
1502 * Returns a map of the specified region of a __DRIimage for the specified usage.
1503 *
1504 * flags may include __DRI_IMAGE_TRANSFER_READ, which will populate the
1505 * mapping with the current buffer content. If __DRI_IMAGE_TRANSFER_READ
1506 * is not included in the flags, the buffer content at map time is
1507 * undefined. Users wanting to modify the mapping must include
1508 * __DRI_IMAGE_TRANSFER_WRITE; if __DRI_IMAGE_TRANSFER_WRITE is not
1509 * included, behaviour when writing the mapping is undefined.
1510 *
1511 * Returns the byte stride in *stride, and an opaque pointer to data
1512 * tracking the mapping in **data, which must be passed to unmapImage().
1513 *
1514 * \since 12
1515 */
1516 void *(*mapImage)(__DRIcontext *context, __DRIimage *image,
1517 int x0, int y0, int width, int height,
1518 unsigned int flags, int *stride, void **data);
1519
1520 /**
1521 * Unmap a previously mapped __DRIimage
1522 *
1523 * \since 12
1524 */
1525 void (*unmapImage)(__DRIcontext *context, __DRIimage *image, void *data);
1526
Ben Widawskyd075cce2016-11-04 11:31:15 -07001527
1528 /**
1529 * Creates an image with implementation's favorite modifiers.
1530 *
1531 * This acts like createImage except there is a list of modifiers passed in
1532 * which the implementation may selectively use to create the DRIimage. The
1533 * result should be the implementation selects one modifier (perhaps it would
1534 * hold on to a few and later pick).
1535 *
1536 * The created image should be destroyed with destroyImage().
1537 *
1538 * Returns the new DRIimage. The chosen modifier can be obtained later on
1539 * and passed back to things like the kernel's AddFB2 interface.
1540 *
1541 * \sa __DRIimageRec::createImage
1542 *
1543 * \since 14
1544 */
1545 __DRIimage *(*createImageWithModifiers)(__DRIscreen *screen,
1546 int width, int height, int format,
1547 const uint64_t *modifiers,
1548 const unsigned int modifier_count,
1549 void *loaderPrivate);
Varad Gautamc5929632017-05-30 17:23:36 +05301550
1551 /*
1552 * Like createImageFromDmaBufs, but takes also format modifiers.
1553 *
1554 * For EGL_EXT_image_dma_buf_import_modifiers.
1555 *
1556 * \since 15
1557 */
1558 __DRIimage *(*createImageFromDmaBufs2)(__DRIscreen *screen,
1559 int width, int height, int fourcc,
1560 uint64_t modifier,
1561 int *fds, int num_fds,
1562 int *strides, int *offsets,
1563 enum __DRIYUVColorSpace color_space,
1564 enum __DRISampleRange sample_range,
1565 enum __DRIChromaSiting horiz_siting,
1566 enum __DRIChromaSiting vert_siting,
1567 unsigned *error,
1568 void *loaderPrivate);
1569
1570 /*
1571 * dmabuf format query to support EGL_EXT_image_dma_buf_import_modifiers.
1572 *
1573 * \param max Maximum number of formats that can be accomodated into
1574 * \param formats. If zero, no formats are returned -
1575 * instead, the driver returns the total number of
1576 * supported dmabuf formats in \param count.
1577 * \param formats Buffer to fill formats into.
1578 * \param count Count of formats returned, or, total number of
1579 * supported formats in case \param max is zero.
1580 *
1581 * Returns true on success.
1582 *
1583 * \since 15
1584 */
1585 GLboolean (*queryDmaBufFormats)(__DRIscreen *screen, int max,
1586 int *formats, int *count);
1587
1588 /*
1589 * dmabuf format modifier query for a given format to support
1590 * EGL_EXT_image_dma_buf_import_modifiers.
1591 *
1592 * \param fourcc The format to query modifiers for. If this format
1593 * is not supported by the driver, return false.
1594 * \param max Maximum number of modifiers that can be accomodated in
1595 * \param modifiers. If zero, no modifiers are returned -
1596 * instead, the driver returns the total number of
1597 * modifiers for \param format in \param count.
1598 * \param modifiers Buffer to fill modifiers into.
1599 * \param count Count of the modifiers returned, or, total number of
1600 * supported modifiers for \param fourcc in case
1601 * \param max is zero.
1602 *
1603 * Returns true upon success.
1604 *
1605 * \since 15
1606 */
1607 GLboolean (*queryDmaBufModifiers)(__DRIscreen *screen, int fourcc,
1608 int max, uint64_t *modifiers,
1609 unsigned int *external_only,
1610 int *count);
Jason Ekstrand0a25a4172017-08-16 11:53:38 -07001611
1612 /**
1613 * dmabuf format modifier attribute query for a given format and modifier.
1614 *
1615 * \param fourcc The format to query. If this format is not supported by
1616 * the driver, return false.
1617 * \param modifier The modifier to query. If this format+modifier is not
1618 * supported by the driver, return false.
1619 * \param attrib The __DRI_IMAGE_FORMAT_MODIFIER_ATTRIB to query.
1620 * \param value A pointer to where to store the result of the query.
1621 *
1622 * Returns true upon success.
1623 *
1624 * \since 16
1625 */
1626 GLboolean (*queryDmaBufFormatModifierAttribs)(__DRIscreen *screen,
1627 uint32_t fourcc, uint64_t modifier,
1628 int attrib, uint64_t *value);
Nicolai Hähnlef12e1c52017-10-10 13:58:46 +02001629
1630 /**
1631 * Create a DRI image from the given renderbuffer.
1632 *
1633 * \param context the current DRI context
1634 * \param renderbuffer the GL name of the renderbuffer
1635 * \param loaderPrivate for callbacks into the loader related to the image
1636 * \param error will be set to one of __DRI_IMAGE_ERROR_xxx
1637 * \return the newly created image on success, or NULL otherwise
1638 *
1639 * \since 17
1640 */
1641 __DRIimage *(*createImageFromRenderbuffer2)(__DRIcontext *context,
1642 int renderbuffer,
1643 void *loaderPrivate,
1644 unsigned *error);
Kristian Høgsberg79cbcb62010-02-11 17:45:24 -05001645};
1646
Kristian Høgsberg5aaa53e2010-06-03 21:36:40 -04001647
Kristian Høgsberg79cbcb62010-02-11 17:45:24 -05001648/**
1649 * This extension must be implemented by the loader and passed to the
1650 * driver at screen creation time. The EGLImage entry points in the
1651 * various client APIs take opaque EGLImage handles and use this
1652 * extension to map them to a __DRIimage. At version 1, this
1653 * extensions allows mapping EGLImage pointers to __DRIimage pointers,
1654 * but future versions could support other EGLImage-like, opaque types
1655 * with new lookup functions.
1656 */
1657#define __DRI_IMAGE_LOOKUP "DRI_IMAGE_LOOKUP"
1658#define __DRI_IMAGE_LOOKUP_VERSION 1
1659
1660typedef struct __DRIimageLookupExtensionRec __DRIimageLookupExtension;
1661struct __DRIimageLookupExtensionRec {
1662 __DRIextension base;
1663
Kristian Høgsberg17eace52010-09-22 22:01:17 -04001664 __DRIimage *(*lookupEGLImage)(__DRIscreen *screen, void *image,
Kristian Høgsberg79cbcb62010-02-11 17:45:24 -05001665 void *loaderPrivate);
1666};
1667
Jesse Barnes234286c2010-04-22 12:47:41 -07001668/**
1669 * This extension allows for common DRI2 options
1670 */
1671#define __DRI2_CONFIG_QUERY "DRI_CONFIG_QUERY"
1672#define __DRI2_CONFIG_QUERY_VERSION 1
1673
1674typedef struct __DRI2configQueryExtensionRec __DRI2configQueryExtension;
1675struct __DRI2configQueryExtensionRec {
1676 __DRIextension base;
1677
Dave Airlie83921792014-07-02 08:24:05 +10001678 int (*configQueryb)(__DRIscreen *screen, const char *var, unsigned char *val);
Dave Airlie29800e62014-06-27 13:23:24 +10001679 int (*configQueryi)(__DRIscreen *screen, const char *var, int *val);
1680 int (*configQueryf)(__DRIscreen *screen, const char *var, float *val);
Jesse Barnes234286c2010-04-22 12:47:41 -07001681};
Ian Romanicka8724d82012-07-03 11:32:59 -07001682
1683/**
1684 * Robust context driver extension.
1685 *
1686 * Existence of this extension means the driver can accept the
1687 * \c __DRI_CTX_FLAG_ROBUST_BUFFER_ACCESS flag and the
1688 * \c __DRI_CTX_ATTRIB_RESET_STRATEGY attribute in
1689 * \c __DRIdri2ExtensionRec::createContextAttribs.
1690 */
1691#define __DRI2_ROBUSTNESS "DRI_Robustness"
1692#define __DRI2_ROBUSTNESS_VERSION 1
1693
1694typedef struct __DRIrobustnessExtensionRec __DRIrobustnessExtension;
1695struct __DRIrobustnessExtensionRec {
1696 __DRIextension base;
1697};
1698
Eric Anholtcf5d8fc2013-06-26 15:15:57 -07001699/**
Grigori Goronzy7299e822017-06-29 03:24:15 +02001700 * No-error context driver extension.
1701 *
1702 * Existence of this extension means the driver can accept the
1703 * __DRI_CTX_FLAG_NO_ERROR flag.
1704 */
1705#define __DRI2_NO_ERROR "DRI_NoError"
1706#define __DRI2_NO_ERROR_VERSION 1
1707
1708typedef struct __DRInoErrorExtensionRec {
1709 __DRIextension base;
1710} __DRInoErrorExtension;
1711
1712/**
Eric Anholtcf5d8fc2013-06-26 15:15:57 -07001713 * DRI config options extension.
1714 *
1715 * This extension provides the XML string containing driver options for use by
1716 * the loader in supporting the driconf application.
Nicolai Hähnle9435b9c2017-06-30 10:52:48 +02001717 *
1718 * v2:
1719 * - Add the getXml getter function which allows the driver more flexibility in
1720 * how the XML is provided.
1721 * - Deprecate the direct xml pointer. It is only provided as a fallback for
1722 * older versions of libGL and must not be used by clients that are aware of
1723 * the newer version. Future driver versions may set it to NULL.
Eric Anholtcf5d8fc2013-06-26 15:15:57 -07001724 */
1725#define __DRI_CONFIG_OPTIONS "DRI_ConfigOptions"
Nicolai Hähnle9435b9c2017-06-30 10:52:48 +02001726#define __DRI_CONFIG_OPTIONS_VERSION 2
Eric Anholtcf5d8fc2013-06-26 15:15:57 -07001727
1728typedef struct __DRIconfigOptionsExtensionRec {
1729 __DRIextension base;
Nicolai Hähnle9435b9c2017-06-30 10:52:48 +02001730 const char *xml; /**< deprecated since v2, use getXml instead */
1731
1732 /**
1733 * Get an XML string that describes available driver options for use by a
1734 * config application.
1735 *
1736 * The returned string must be heap-allocated. The caller is responsible for
1737 * freeing it.
1738 */
1739 char *(*getXml)(const char *driver_name);
Eric Anholtcf5d8fc2013-06-26 15:15:57 -07001740} __DRIconfigOptionsExtension;
1741
Eric Anholt4e547512013-09-26 10:51:29 -07001742/**
1743 * This extension provides a driver vtable to a set of common driver helper
1744 * functions (driCoreExtension, driDRI2Extension) within the driver
1745 * implementation, as opposed to having to pass them through a global
1746 * variable.
1747 *
1748 * It is not intended to be public API to the actual loader, and the vtable
1749 * layout may change at any time.
1750 */
1751#define __DRI_DRIVER_VTABLE "DRI_DriverVtable"
1752#define __DRI_DRIVER_VTABLE_VERSION 1
1753
1754typedef struct __DRIDriverVtableExtensionRec {
1755 __DRIextension base;
1756 const struct __DriverAPIRec *vtable;
1757} __DRIDriverVtableExtension;
1758
Ian Romanick64bb1e82013-02-14 15:51:52 -08001759/**
1760 * Query renderer driver extension
1761 *
1762 * This allows the window system layer (either EGL or GLX) to query aspects of
1763 * hardware and driver support without creating a context.
1764 */
1765#define __DRI2_RENDERER_QUERY "DRI_RENDERER_QUERY"
1766#define __DRI2_RENDERER_QUERY_VERSION 1
1767
1768#define __DRI2_RENDERER_VENDOR_ID 0x0000
1769#define __DRI2_RENDERER_DEVICE_ID 0x0001
1770#define __DRI2_RENDERER_VERSION 0x0002
1771#define __DRI2_RENDERER_ACCELERATED 0x0003
1772#define __DRI2_RENDERER_VIDEO_MEMORY 0x0004
1773#define __DRI2_RENDERER_UNIFIED_MEMORY_ARCHITECTURE 0x0005
1774#define __DRI2_RENDERER_PREFERRED_PROFILE 0x0006
1775#define __DRI2_RENDERER_OPENGL_CORE_PROFILE_VERSION 0x0007
1776#define __DRI2_RENDERER_OPENGL_COMPATIBILITY_PROFILE_VERSION 0x0008
1777#define __DRI2_RENDERER_OPENGL_ES_PROFILE_VERSION 0x0009
1778#define __DRI2_RENDERER_OPENGL_ES2_PROFILE_VERSION 0x000a
Marek Olšák4f57ccd2015-06-10 14:45:58 +02001779#define __DRI2_RENDERER_HAS_TEXTURE_3D 0x000b
1780/* Whether there is an sRGB format support for every supported 32-bit UNORM
1781 * color format.
1782 */
1783#define __DRI2_RENDERER_HAS_FRAMEBUFFER_SRGB 0x000c
Ian Romanick64bb1e82013-02-14 15:51:52 -08001784
Chris Wilson95ecf3d2016-10-27 19:34:46 +01001785/* Bitmaks of supported/available context priorities - must match
1786 * __EGL_CONTEXT_PRIORITY_LOW_BIT et al
1787 */
1788#define __DRI2_RENDERER_HAS_CONTEXT_PRIORITY 0x000d
1789#define __DRI2_RENDERER_HAS_CONTEXT_PRIORITY_LOW (1 << 0)
1790#define __DRI2_RENDERER_HAS_CONTEXT_PRIORITY_MEDIUM (1 << 1)
1791#define __DRI2_RENDERER_HAS_CONTEXT_PRIORITY_HIGH (1 << 2)
1792
Ian Romanick64bb1e82013-02-14 15:51:52 -08001793typedef struct __DRI2rendererQueryExtensionRec __DRI2rendererQueryExtension;
1794struct __DRI2rendererQueryExtensionRec {
1795 __DRIextension base;
1796
1797 int (*queryInteger)(__DRIscreen *screen, int attribute, unsigned int *val);
1798 int (*queryString)(__DRIscreen *screen, int attribute, const char **val);
1799};
1800
Keith Packard44244202013-11-04 18:09:51 -08001801/**
1802 * Image Loader extension. Drivers use this to allocate color buffers
1803 */
1804
1805enum __DRIimageBufferMask {
1806 __DRI_IMAGE_BUFFER_BACK = (1 << 0),
1807 __DRI_IMAGE_BUFFER_FRONT = (1 << 1)
1808};
1809
1810struct __DRIimageList {
1811 uint32_t image_mask;
1812 __DRIimage *back;
1813 __DRIimage *front;
1814};
1815
1816#define __DRI_IMAGE_LOADER "DRI_IMAGE_LOADER"
Thomas Hellstromae93d532017-06-20 18:24:34 +02001817#define __DRI_IMAGE_LOADER_VERSION 3
Keith Packard44244202013-11-04 18:09:51 -08001818
1819struct __DRIimageLoaderExtensionRec {
1820 __DRIextension base;
1821
1822 /**
1823 * Allocate color buffers.
1824 *
1825 * \param driDrawable
1826 * \param width Width of allocated buffers
1827 * \param height Height of allocated buffers
1828 * \param format one of __DRI_IMAGE_FORMAT_*
1829 * \param stamp Address of variable to be updated when
1830 * getBuffers must be called again
1831 * \param loaderPrivate The loaderPrivate for driDrawable
1832 * \param buffer_mask Set of buffers to allocate
1833 * \param buffers Returned buffers
1834 */
1835 int (*getBuffers)(__DRIdrawable *driDrawable,
1836 unsigned int format,
1837 uint32_t *stamp,
1838 void *loaderPrivate,
1839 uint32_t buffer_mask,
1840 struct __DRIimageList *buffers);
1841
1842 /**
1843 * Flush pending front-buffer rendering
1844 *
1845 * Any rendering that has been performed to the
1846 * fake front will be flushed to the front
1847 *
1848 * \param driDrawable Drawable whose front-buffer is to be flushed
1849 * \param loaderPrivate Loader's private data that was previously passed
1850 * into __DRIdri2ExtensionRec::createNewDrawable
1851 */
1852 void (*flushFrontBuffer)(__DRIdrawable *driDrawable, void *loaderPrivate);
Marek Olšák1bf703e2017-07-28 17:30:34 +02001853
1854 /**
1855 * Return a loader capability value. If the loader doesn't know the enum,
1856 * it will return 0.
1857 *
1858 * \since 2
1859 */
1860 unsigned (*getCapability)(void *loaderPrivate, enum dri_loader_cap cap);
Thomas Hellstromae93d532017-06-20 18:24:34 +02001861
1862 /**
1863 * Flush swap buffers
1864 *
1865 * Make sure any outstanding swap buffers have been submitted to the
1866 * device.
1867 *
1868 * \param driDrawable Drawable whose swaps need to be flushed
1869 * \param loaderPrivate Loader's private data that was previously passed
1870 * into __DRIdri2ExtensionRec::createNewDrawable
1871 *
1872 * \since 3
1873 */
1874 void (*flushSwapBuffers)(__DRIdrawable *driDrawable, void *loaderPrivate);
Keith Packard44244202013-11-04 18:09:51 -08001875};
1876
1877/**
1878 * DRI extension.
1879 */
1880
1881#define __DRI_IMAGE_DRIVER "DRI_IMAGE_DRIVER"
1882#define __DRI_IMAGE_DRIVER_VERSION 1
1883
1884struct __DRIimageDriverExtensionRec {
1885 __DRIextension base;
1886
1887 /* Common DRI functions, shared with DRI2 */
1888 __DRIcreateNewScreen2Func createNewScreen2;
1889 __DRIcreateNewDrawableFunc createNewDrawable;
Keith Packard44244202013-11-04 18:09:51 -08001890 __DRIcreateContextAttribsFunc createContextAttribs;
1891 __DRIgetAPIMaskFunc getAPIMask;
1892};
1893
Paul Berrye043b2a2012-11-14 11:13:02 -08001894/**
1895 * Background callable loader extension.
1896 *
1897 * Loaders expose this extension to indicate to drivers that they are capable
1898 * of handling callbacks from the driver's background drawing threads.
1899 */
1900#define __DRI_BACKGROUND_CALLABLE "DRI_BackgroundCallable"
1901#define __DRI_BACKGROUND_CALLABLE_VERSION 1
1902
1903typedef struct __DRIbackgroundCallableExtensionRec __DRIbackgroundCallableExtension;
1904struct __DRIbackgroundCallableExtensionRec {
1905 __DRIextension base;
1906
1907 /**
1908 * Indicate that this thread is being used by the driver as a background
1909 * drawing thread which may make callbacks to the loader.
1910 *
1911 * \param loaderPrivate is the value that was passed to to the driver when
1912 * the context was created. This can be used by the loader to identify
1913 * which context any callbacks are associated with.
1914 *
1915 * If this function is called more than once from any given thread, each
1916 * subsequent call overrides the loaderPrivate data that was passed in the
1917 * previous call. The driver can take advantage of this to re-use a
1918 * background thread to perform drawing on behalf of multiple contexts.
1919 *
1920 * It is permissible for the driver to call this function from a
1921 * non-background thread (i.e. a thread that has already been bound to a
1922 * context using __DRIcoreExtensionRec::bindContext()); when this happens,
1923 * the \c loaderPrivate pointer must be equal to the pointer that was
1924 * passed to the driver when the currently bound context was created.
1925 *
1926 * This call should execute quickly enough that the driver can call it with
1927 * impunity whenever a background thread starts performing drawing
1928 * operations (e.g. it should just set a thread-local variable).
1929 */
1930 void (*setBackgroundContext)(void *loaderPrivate);
Gregory Hainautfa84f622017-05-29 13:18:25 +02001931
1932 /**
1933 * Indicate that it is multithread safe to use glthread. For GLX/EGL
1934 * platforms using Xlib, that involves calling XInitThreads, before
1935 * opening an X display.
1936 *
1937 * Note: only supported if extension version is at least 2.
1938 *
1939 * \param loaderPrivate is the value that was passed to to the driver when
1940 * the context was created. This can be used by the loader to identify
1941 * which context any callbacks are associated with.
1942 */
1943 GLboolean (*isThreadSafe)(void *loaderPrivate);
Paul Berrye043b2a2012-11-14 11:13:02 -08001944};
1945
Keith Whitwell74d563c2004-04-29 12:23:39 +00001946#endif