/external/mesa3d/src/gallium/state_trackers/dri/sw/ |
drisw.c | 104 struct pipe_resource *ptex) 112 screen->base.screen->flush_frontbuffer(screen->base.screen, ptex, 0, 0, drawable); 127 struct pipe_resource *ptex) 129 drisw_present_texture(dPriv, ptex); 143 struct pipe_resource *ptex; local 148 ptex = drawable->textures[ST_ATTACHMENT_BACK_LEFT]; 150 if (ptex) { 152 pp_run(ctx->pp, ptex, ptex, drawable->textures[ST_ATTACHMENT_DEPTH_STENCIL]); 156 drisw_copy_to_front(dPriv, ptex); 165 struct pipe_resource *ptex; local [all...] |
/external/mesa3d/src/gallium/state_trackers/egl/common/ |
egl_g3d_image.c | 228 struct pipe_resource *ptex; local 245 ptex = egl_g3d_reference_native_pixmap(dpy, 250 ptex = egl_g3d_reference_drm_buffer(dpy, 256 ptex = egl_g3d_reference_wl_buffer(dpy, 262 ptex = egl_g3d_reference_android_native_buffer(dpy, 267 ptex = NULL; 271 if (!ptex) { 276 if (level > ptex->last_level) { 282 if (layer >= (u_minify(ptex->depth0, level) + ptex->array_size - 1)) 313 struct pipe_resource *ptex; local [all...] |
egl_g3d_st.c | 134 struct pipe_resource templ, *ptex; local 147 ptex = screen->resource_create(screen, &templ); 148 gsurf->render_texture = ptex;
|
egl_g3d_api.c | 398 struct pipe_resource *ptex = NULL; local 448 &gsurf->stvis.render_buffer, 1, &ptex)) { 453 pipe_resource_reference(&ptex, NULL);
|
/external/mesa3d/src/gallium/drivers/radeonsi/ |
r600_texture.c | 77 const struct pipe_resource *ptex, 80 surface->npix_x = ptex->width0; 81 surface->npix_y = ptex->height0; 82 surface->npix_z = ptex->depth0; 83 surface->blk_w = util_format_get_blockwidth(ptex->format); 84 surface->blk_h = util_format_get_blockheight(ptex->format); 87 surface->last_level = ptex->last_level; 88 surface->bpe = util_format_get_blocksize(ptex->format); 110 switch (ptex->target) { 123 surface->array_size = ptex->array_size [all...] |
/external/mesa3d/src/gallium/drivers/r600/ |
r600_texture.c | 70 const struct pipe_resource *ptex, 75 util_format_description(ptex->format); 81 surface->npix_x = ptex->width0; 82 surface->npix_y = ptex->height0; 83 surface->npix_z = ptex->depth0; 84 surface->blk_w = util_format_get_blockwidth(ptex->format); 85 surface->blk_h = util_format_get_blockheight(ptex->format); 88 surface->last_level = ptex->last_level; 92 ptex->format == PIPE_FORMAT_Z32_FLOAT_S8X24_UINT) { 95 surface->bpe = util_format_get_blocksize(ptex->format) 164 struct pipe_resource *ptex = &rtex->resource.b.b; local [all...] |
/external/mesa3d/src/gallium/state_trackers/glx/xlib/ |
xm_st.c | 63 struct pipe_resource *ptex = xstfb->textures[statt]; local 66 if (!ptex) 71 if (!pres || pres != ptex) { 72 pipe_resource_reference(&xstfb->display_resource, ptex);
|
/external/mesa3d/src/gallium/state_trackers/wgl/ |
stw_st.c | 230 struct pipe_resource *ptex; local 234 ptex = stwfb->textures[front]; 236 stwfb->textures[back] = ptex;
|
/external/mesa3d/src/gallium/state_trackers/dri/drm/ |
dri2.c | 52 struct pipe_resource *ptex = drawable->textures[ST_ATTACHMENT_BACK_LEFT]; local 55 if (ptex && ctx->pp && drawable->textures[ST_ATTACHMENT_DEPTH_STENCIL]) 56 pp_run(ctx->pp, ptex, ptex, drawable->textures[ST_ATTACHMENT_DEPTH_STENCIL]);
|
/external/mesa3d/src/gallium/state_trackers/egl/x11/ |
native_dri2.c | 400 struct pipe_resource *ptex = dri2surf->textures[att]; local 403 pipe_resource_reference(&textures[att], ptex); 439 struct pipe_resource *ptex = dri2surf->textures[i]; local 440 pipe_resource_reference(&ptex, NULL);
|