HomeSort by relevance Sort by last modified time
    Searched defs:prsc (Results 1 - 8 of 8) sorted by null

  /external/mesa3d/src/gallium/drivers/freedreno/a2xx/
fd2_emit.h 40 struct pipe_resource *prsc; member in struct:fd2_vertex_buf
fd2_context.c 62 struct pipe_resource *prsc = pipe_buffer_create(pctx->screen, local
64 pipe_buffer_write(pctx, prsc, 0,
66 return prsc;
  /external/mesa3d/src/gallium/drivers/freedreno/
freedreno_context.c 178 struct pipe_resource *prsc = pipe_buffer_create(pctx->screen, local
180 pipe_buffer_write(pctx, prsc, 0,
182 return prsc;
188 struct pipe_resource *prsc = pipe_buffer_create(pctx->screen, local
190 return prsc;
freedreno_query_hw.h 110 struct pipe_resource *prsc; member in struct:fd_hw_sample
freedreno_resource.c 52 fd_invalidate_resource(struct fd_context *ctx, struct pipe_resource *prsc)
63 if (ctx->constbuf[PIPE_SHADER_VERTEX].cb[i].buffer == prsc)
65 if (ctx->constbuf[PIPE_SHADER_FRAGMENT].cb[i].buffer == prsc)
71 if (ctx->vtx.vertexbuf.vb[i].buffer == prsc)
76 if (ctx->indexbuf.buffer == prsc)
81 if (ctx->verttex.textures[i] && (ctx->verttex.textures[i]->texture == prsc))
85 if (ctx->fragtex.textures[i] && (ctx->fragtex.textures[i]->texture == prsc))
133 struct pipe_resource *prsc = &rsc->base.b; local
136 if (prsc->next)
143 prsc->format, prsc->target, prsc->nr_samples
701 struct pipe_resource *prsc = &rsc->base.b; local
787 struct pipe_resource *prsc = &rsc->base.b; local
885 struct pipe_resource *prsc = &rsc->base.b; local
    [all...]
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_draw.c 341 struct pipe_resource *prsc; local
343 prsc = vc4_get_shadow_index_buffer(pctx, &vc4->indexbuf,
348 prsc = NULL;
352 &offset, &prsc);
354 prsc = vc4->indexbuf.buffer;
357 struct vc4_resource *rsc = vc4_resource(prsc);
372 pipe_resource_reference(&prsc, NULL);
vc4_resource.c 42 struct pipe_resource *prsc = &rsc->base.b; local
43 struct pipe_screen *pscreen = prsc->screen;
53 rsc->cube_map_stride * (prsc->array_size - 1));
59 rsc->cube_map_stride * (prsc->array_size - 1),
128 struct pipe_resource *prsc,
134 temp_setup.target = prsc->target;
135 temp_setup.format = prsc->format;
146 struct pipe_resource *prsc,
152 struct vc4_resource *rsc = vc4_resource(prsc);
155 enum pipe_format format = prsc->format
401 struct pipe_resource *prsc = &rsc->base.b; local
504 struct pipe_resource *prsc = &rsc->base.b; local
545 struct pipe_resource *prsc = &rsc->base.b; local
581 struct pipe_resource *prsc = &rsc->base.b; local
673 struct pipe_resource *prsc = psurf->texture; local
770 struct pipe_resource *prsc = psurf->texture; local
    [all...]
  /external/mesa3d/src/gallium/drivers/etnaviv/
etnaviv_resource.c 108 struct pipe_resource *prsc = &rsc->base; local
110 unsigned width = prsc->width0;
111 unsigned height = prsc->height0;
112 unsigned depth = prsc->depth0;
114 for (level = 0; level <= prsc->last_level; level++) {
121 mip->stride = util_format_get_stride(prsc->format, mip->padded_width);
123 mip->layer_stride = mip->stride * util_format_get_nblocksy(prsc->format, mip->padded_height);
124 mip->size = prsc->array_size * mip->layer_stride;
281 etna_resource_destroy(struct pipe_screen *pscreen, struct pipe_resource *prsc)
283 struct etna_resource *rsc = etna_resource(prsc);
309 struct pipe_resource *prsc = &rsc->base; local
    [all...]

Completed in 142 milliseconds