HomeSort by relevance Sort by last modified time
    Searched refs:dPriv (Results 1 - 20 of 20) sorted by null

  /external/mesa3d/src/gallium/state_trackers/dri/sw/
drisw.c 52 get_drawable_info(__DRIdrawable *dPriv, int *x, int *y, int *w, int *h)
54 __DRIscreen *sPriv = dPriv->driScreenPriv;
57 loader->getDrawableInfo(dPriv,
59 dPriv->loaderPrivate);
63 put_image(__DRIdrawable *dPriv, void *data, unsigned width, unsigned height)
65 __DRIscreen *sPriv = dPriv->driScreenPriv;
68 loader->putImage(dPriv, __DRI_SWRAST_IMAGE_OP_SWAP,
70 data, dPriv->loaderPrivate);
74 get_image(__DRIdrawable *dPriv, int x, int y, int width, int height, void *data)
76 __DRIscreen *sPriv = dPriv->driScreenPriv
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_tex.h 38 extern void r200SetTexBuffer(__DRIcontext *pDRICtx, GLint target, __DRIdrawable *dPriv);
40 __DRIdrawable *dPriv);
r200_texstate.c 729 __DRIdrawable *dPriv)
744 rfb = dPriv->driverPrivate;
755 radeon_update_renderbuffers(pDRICtx, dPriv, GL_TRUE);
839 void r200SetTexBuffer(__DRIcontext *pDRICtx, GLint target, __DRIdrawable *dPriv)
841 r200SetTexBuffer2(pDRICtx, target, __DRI_TEXTURE_FORMAT_RGBA, dPriv);
    [all...]
r200_state.c     [all...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_tex.h 40 extern void radeonSetTexBuffer(__DRIcontext *pDRICtx, GLint target, __DRIdrawable *dPriv);
42 __DRIdrawable *dPriv);
radeon_texstate.c 606 __DRIdrawable *dPriv)
621 rfb = dPriv->driverPrivate;
632 radeon_update_renderbuffers(pDRICtx, dPriv, GL_TRUE);
714 void radeonSetTexBuffer(__DRIcontext *pDRICtx, GLint target, __DRIdrawable *dPriv)
716 radeonSetTexBuffer2(pDRICtx, target, __DRI_TEXTURE_FORMAT_RGBA, dPriv);
    [all...]
radeon_common_context.h 101 __DRIdrawable *dPriv;
radeon_state.c     [all...]
radeon_fbo.c 695 rrb->dPriv = driDrawPriv;
  /external/mesa3d/src/mesa/drivers/dri/swrast/
swrast.c 64 GLint texture_format, __DRIdrawable *dPriv)
68 __DRIscreen *sPriv = dPriv->driScreenPriv;
87 sPriv->swrast_loader->getDrawableInfo(dPriv, &x, &y, &w, &h, dPriv->loaderPrivate);
97 sPriv->swrast_loader->getImage(dPriv, x, y, w, h, (char *)swImage->Buffer,
98 dPriv->loaderPrivate);
104 __DRIdrawable *dPriv)
106 swrastSetTexBuffer2(pDRICtx, target, __DRI_TEXTURE_FORMAT_RGBA, dPriv);
320 swrast_new_renderbuffer(const struct gl_config *visual, __DRIdrawable *dPriv,
338 xrb->dPriv = dPriv
    [all...]
swrast_priv.h 86 __DRIdrawable *dPriv;
106 __DRIdrawable *dPriv;
  /external/mesa3d/src/gallium/state_trackers/dri/common/
dri_drawable.h 51 __DRIdrawable *dPriv;
98 __DRIdrawable * dPriv,
101 void dri_destroy_buffer(__DRIdrawable * dPriv);
dri_drawable.c 66 * dPriv->dri2.stamp is the server stamp. dPriv->lastStamp is the
71 lastStamp = drawable->dPriv->lastStamp;
89 } while (lastStamp != drawable->dPriv->lastStamp);
120 __DRIdrawable * dPriv,
143 drawable->dPriv = dPriv;
148 dPriv->driverPrivate = (void *)drawable;
158 dri_destroy_buffer(__DRIdrawable * dPriv)
160 struct dri_drawable *drawable = dri_drawable(dPriv);
    [all...]
dri_context.h 50 __DRIdrawable *dPriv;
dri_context.c 234 if (ctx->dPriv != driDrawPriv) {
235 ctx->dPriv = driDrawPriv;
  /external/mesa3d/src/gallium/state_trackers/dri/drm/
dri2.c 47 dri2_flush_drawable(__DRIdrawable *dPriv)
49 struct dri_context *ctx = dri_get_current(dPriv->driScreenPriv);
50 struct dri_drawable *drawable = dri_drawable(dPriv);
63 dri2_invalidate_drawable(__DRIdrawable *dPriv)
65 struct dri_drawable *drawable = dri_drawable(dPriv);
67 dri2InvalidateDrawable(dPriv);
68 drawable->dPriv->lastStamp = drawable->dPriv->dri2.stamp;
87 __DRIdrawable *dri_drawable = drawable->dPriv;
210 __DRIdrawable *dri_drawable = drawable->dPriv;
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_tex_image.c 270 __DRIdrawable *dPriv)
272 struct gl_framebuffer *fb = dPriv->driverPrivate;
288 if (dPriv->lastStamp != dPriv->dri2.stamp ||
290 intel_update_renderbuffers(pDRICtx, dPriv);
321 intelSetTexBuffer(__DRIcontext *pDRICtx, GLint target, __DRIdrawable *dPriv)
326 intelSetTexBuffer2(pDRICtx, target, __DRI_TEXTURE_FORMAT_RGBA, dPriv);
  /external/mesa3d/src/mesa/drivers/dri/common/
dri_util.c 609 * Check that the gl_framebuffer associated with dPriv is the right size.
611 * It's expected that the dPriv->driverPrivate member points to a
615 driUpdateFramebufferSize(struct gl_context *ctx, const __DRIdrawable *dPriv)
617 struct gl_framebuffer *fb = (struct gl_framebuffer *) dPriv->driverPrivate;
618 if (fb && (dPriv->w != fb->Width || dPriv->h != fb->Height)) {
619 ctx->Driver.ResizeBuffers(ctx, fb, dPriv->w, dPriv->h);
622 assert(fb->Width == dPriv->w);
623 assert(fb->Height == dPriv->h)
    [all...]
dri_util.h 267 driUpdateFramebufferSize(struct gl_context *ctx, const __DRIdrawable *dPriv);
  /external/mesa3d/src/gallium/state_trackers/xorg/
xorg_exa.c 733 ExaDestroyPixmap(ScreenPtr pScreen, void *dPriv)
735 struct exa_pixmap_priv *priv = (struct exa_pixmap_priv *)dPriv;

Completed in 153 milliseconds