HomeSort by: relevance | last modified time | path
    Searched refs:dri2 (Results 1 - 25 of 119) sorted by relevancy

1 2 3 4 5

  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i915/
intel_context.c 104 #define flushFront(screen) ((screen)->image.loader ? (screen)->image.loader->flushFrontBuffer : (screen)->dri2.loader->flushFrontBuffer)
169 region_name = "dri2 front buffer";
174 region_name = "dri2 fake front buffer";
179 region_name = "dri2 back buffer";
207 drawable->lastStamp = drawable->dri2.stamp;
231 if (drawable && drawable->dri2.stamp != driContext->dri2.draw_stamp) {
232 if (drawable->lastStamp != drawable->dri2.stamp)
235 driContext->dri2.draw_stamp = drawable->dri2.stamp
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i915/
intel_context.c 103 #define flushFront(screen) ((screen)->image.loader ? (screen)->image.loader->flushFrontBuffer : (screen)->dri2.loader->flushFrontBuffer)
167 region_name = "dri2 front buffer";
172 region_name = "dri2 fake front buffer";
177 region_name = "dri2 back buffer";
205 drawable->lastStamp = drawable->dri2.stamp;
229 if (drawable && drawable->dri2.stamp != driContext->dri2.draw_stamp) {
230 if (drawable->lastStamp != drawable->dri2.stamp)
233 driContext->dri2.draw_stamp = drawable->dri2.stamp
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/radeon/
radeon_common_context.c 97 strcat(buffer, " DRI2");
331 if (!screen->dri2.loader)
335 if (drawable->dri2.stamp != driContext->dri2.draw_stamp) {
336 if (drawable->lastStamp != drawable->dri2.stamp)
342 driContext->dri2.draw_stamp = drawable->dri2.stamp;
346 if (drawable->dri2.stamp != driContext->dri2.read_stamp) {
347 if (drawable->lastStamp != drawable->dri2.stamp
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/radeon/
radeon_common_context.c 96 strcat(buffer, " DRI2");
330 if (!screen->dri2.loader)
334 if (drawable->dri2.stamp != driContext->dri2.draw_stamp) {
335 if (drawable->lastStamp != drawable->dri2.stamp)
341 driContext->dri2.draw_stamp = drawable->dri2.stamp;
345 if (drawable->dri2.stamp != driContext->dri2.read_stamp) {
346 if (drawable->lastStamp != drawable->dri2.stamp
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/common/
dri_util.h 48 * The following structs are shared between DRISW and DRI2, the DRISW structs
49 * are essentially base classes of the DRI2 structs. DRISW needs to compile on
207 /* Flag to indicate that this is a DRI2 screen. Many of the above
213 } dri2; member in struct:__DRIscreenRec
261 } dri2; member in struct:__DRIcontextRec
304 * If this differs from the value stored at __DRIdrawable::dri2.stamp,
317 } dri2; member in struct:__DRIdrawableRec
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/common/
dri_util.h 48 * The following structs are shared between DRISW and DRI2, the DRISW structs
49 * are essentially base classes of the DRI2 structs. DRISW needs to compile on
207 /* Flag to indicate that this is a DRI2 screen. Many of the above
213 } dri2; member in struct:__DRIscreenRec
261 } dri2; member in struct:__DRIcontextRec
304 * If this differs from the value stored at __DRIdrawable::dri2.stamp,
317 } dri2; member in struct:__DRIdrawableRec
  /xsrc/external/mit/MesaLib/dist/src/glx/
dri2_priv.h 45 const __DRIdri2Extension *dri2; member in struct:dri2_screen
  /xsrc/external/mit/MesaLib.old/dist/src/glx/
dri2_priv.h 45 const __DRIdri2Extension *dri2; member in struct:dri2_screen
dri2_glx.c 39 #include <xcb/dri2.h>
48 #include "dri2.h"
194 /* If the shareList context is not a DRI2 context, we cannot possibly
195 * create a DRI2 context that shares it.
217 (*psc->dri2->createNewContext) (psc->driScreen,
254 if (psc->dri2->base.version < 3) {
259 /* Remap the GLX tokens to DRI2 tokens.
294 * this we don't have to check the driver's DRI2 version before sending the
325 (*psc->dri2->createContextAttribs) (psc->driScreen,
358 /* If it's a GLX 1.3 drawables, we can destroy the DRI2 drawabl
    [all...]
  /xsrc/external/mit/xf86-video-nouveau/dist/src/
nouveau_dri2.c 8 #ifdef DRI2
9 #include "dri2.h"
11 #error "This driver requires a DRI2-enabled X server"
987 DRI2InfoRec dri2 = { 0 }; local
997 dri2.driverNames = drivernames[0];
999 dri2.driverNames = drivernames[1];
1000 dri2.numDrivers = 2;
1001 dri2.driverName = dri2.driverNames[0];
1003 dri2.fd = pNv->dev->fd
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/nouveau/
nouveau_context.c 245 if (draw->lastStamp == draw->dri2.stamp)
247 draw->lastStamp = draw->dri2.stamp;
260 buffers = screen->dri2.loader->getBuffers(draw, &draw->w, &draw->h,
325 *stamp = draw->dri2.stamp;
347 &dri_ctx->dri2.draw_stamp);
352 &dri_ctx->dri2.read_stamp);
407 if (draw->dri2.stamp != *stamp)
420 &dri_ctx->dri2.draw_stamp);
424 &dri_ctx->dri2.read_stamp);
nouveau_driver.c 77 const __DRIdri2LoaderExtension *dri2 = screen->dri2.loader; local
81 dri2->flushFrontBuffer(drawable, drawable->loaderPrivate);
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/nouveau/
nouveau_context.c 245 if (draw->lastStamp == draw->dri2.stamp)
247 draw->lastStamp = draw->dri2.stamp;
260 buffers = screen->dri2.loader->getBuffers(draw, &draw->w, &draw->h,
325 *stamp = draw->dri2.stamp;
347 &dri_ctx->dri2.draw_stamp);
352 &dri_ctx->dri2.read_stamp);
407 if (draw->dri2.stamp != *stamp)
420 &dri_ctx->dri2.draw_stamp);
424 &dri_ctx->dri2.read_stamp);
nouveau_driver.c 77 const __DRIdri2LoaderExtension *dri2 = screen->dri2.loader; local
81 dri2->flushFrontBuffer(drawable, drawable->loaderPrivate);
  /xsrc/external/mit/xorg-server/dist/hw/xfree86/common/
xf86Privstr.h 94 Bool dri2; member in struct:__anon9936
  /xsrc/external/mit/MesaLib/dist/.gitlab-ci/container/debian/
arm_build.sh 31 libxcb-dri2-0-dev \
x86_build-base.sh 69 x11proto-dri2-dev \
  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i965/
brw_context.c 132 driScreen->dri2.backgroundCallable;
232 #define flushFront(screen) ((screen)->image.loader ? (screen)->image.loader->flushFrontBuffer : (screen)->dri2.loader->flushFrontBuffer)
374 /* GLX uses DRI2 invalidate events to handle window resizing.
381 if (!brw->driContext->driScreenPriv->dri2.useInvalidate)
1225 if (driContextPriv->driScreenPriv->dri2.backgroundCallable &&
1392 driContextPriv->dri2.draw_stamp = driDrawPriv->dri2.stamp - 1;
1399 driContextPriv->dri2.read_stamp = driReadPriv->dri2.stamp - 1;
1512 drawable->lastStamp = drawable->dri2.stamp
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i965/
brw_context.c 159 driScreen->dri2.backgroundCallable;
227 #define flushFront(screen) ((screen)->image.loader ? (screen)->image.loader->flushFrontBuffer : (screen)->dri2.loader->flushFrontBuffer)
320 /* GLX uses DRI2 invalidate events to handle window resizing.
327 if (!brw->driContext->driScreenPriv->dri2.useInvalidate)
1143 if (driContextPriv->driScreenPriv->dri2.backgroundCallable &&
1312 driContextPriv->dri2.draw_stamp = driDrawPriv->dri2.stamp - 1;
1319 driContextPriv->dri2.read_stamp = driReadPriv->dri2.stamp - 1;
1432 drawable->lastStamp = drawable->dri2.stamp
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/dri/
dri_screen.h 82 /* hooks filled in by dri2 & drisw */
137 const __DRIdri2LoaderExtension *loader = sPriv->dri2.loader;
  /xsrc/external/mit/MesaLib.old/dist/src/egl/
Android.mk 39 drivers/dri2/platform_android.c
48 $(MESA_TOP)/src/egl/drivers/dri2
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/dri/
dri_screen.h 82 /* hooks filled in by dri2 & drisw */
124 const __DRIdri2LoaderExtension *loader = sPriv->dri2.loader;
  /xsrc/external/mit/xorg-server.old/dist/hw/xfree86/common/
xf86Privstr.h 115 Bool dri2; member in struct:__anon10534
  /xsrc/external/mit/xf86-video-ati/dist/src/
radeon_dri2.c 491 /* Driver option "SwapbuffersWait" defines if we vsync DRI2 copy-swaps. */
905 ret = drmWaitVBlank(info->dri2.drm_fd, &vbl);
967 ret = drmWaitVBlank(info->dri2.drm_fd, &vbl);
994 ret = drmWaitVBlank(info->dri2.drm_fd, &vbl);
1026 ret = drmWaitVBlank(info->dri2.drm_fd, &vbl);
1177 ret = drmWaitVBlank(info->dri2.drm_fd, &vbl);
1226 ret = drmWaitVBlank(info->dri2.drm_fd, &vbl);
1271 ret = drmWaitVBlank(info->dri2.drm_fd, &vbl);
1323 xf86DrvMsg(pScrn->scrnIndex, X_WARNING, "DRI2 requires EXA\n");
1327 info->dri2.device_name = drmGetDeviceNameFromFd(info->dri2.drm_fd)
    [all...]
  /xsrc/external/mit/xf86-video-intel/dist/src/uxa/
intel_driver.c 245 intel->dri2 = intel->dri3 = DRI_NONE;
250 intel->dri2 = DRI_DISABLED;
256 intel->dri2 = intel->dri3 = DRI_DISABLED;
607 if (intel->dri2 != DRI_DISABLED && !xf86LoadSubModule(scrn, "dri2"))
608 intel->dri2 = DRI_DISABLED;
937 if (intel->dri2 == DRI_NONE && I830DRI2ScreenInit(screen))
938 intel->dri2 = DRI_ACTIVE;
1013 from = (intel->dri2 == DRI_ACTIVE &&
1024 switch (intel->dri2) {
    [all...]

Completed in 20 milliseconds

1 2 3 4 5