Searched defs:surf_tmpl (Results 51 - 68 of 68) sorted by relevance

123

/external/mesa3d/src/gallium/state_trackers/vega/
H A Dimage.c139 struct pipe_surface *surf, surf_tmpl; local
142 u_surface_default_template(&surf_tmpl, dst, PIPE_BIND_RENDER_TARGET);
143 surf = ctx->pipe->create_surface(ctx->pipe, dst, &surf_tmpl);
567 struct pipe_surface *surf, surf_tmpl; local
570 memset(&surf_tmpl, 0, sizeof(surf_tmpl));
571 u_surface_default_template(&surf_tmpl, image_texture(src),
573 surf = pipe->create_surface(pipe, image_texture(src), &surf_tmpl);
587 struct pipe_surface *surf, surf_tmpl; local
593 memset(&surf_tmpl,
[all...]
H A Dmask.c398 struct pipe_surface *surf, surf_tmpl; local
401 u_surface_default_template(&surf_tmpl, layer->sampler_view->texture,
404 &surf_tmpl);
427 struct pipe_surface *surf, surf_tmpl; local
428 u_surface_default_template(&surf_tmpl, view->texture,
430 surf = pipe->create_surface(pipe, view->texture, &surf_tmpl);
H A Drenderer.c864 struct pipe_surface *surf, surf_tmpl; local
873 u_surface_default_template(&surf_tmpl, dst,
875 surf = renderer->pipe->create_surface(renderer->pipe, dst, &surf_tmpl);
/external/mesa3d/src/gallium/state_trackers/xorg/
H A Dxorg_exa.c1067 struct pipe_surface surf_tmpl; local
1068 memset(&surf_tmpl, 0, sizeof(surf_tmpl));
1069 u_surface_default_template(&surf_tmpl, priv->tex,
1072 return pipe->create_surface(pipe, priv->tex, &surf_tmpl);
/external/mesa3d/src/mesa/state_tracker/
H A Dst_manager.c208 struct pipe_surface *ps, surf_tmpl; local
227 u_surface_default_template(&surf_tmpl, textures[i],
229 ps = st->pipe->create_surface(st->pipe, textures[i], &surf_tmpl);
800 struct pipe_surface *ps, surf_tmpl; local
809 u_surface_default_template(&surf_tmpl, stimg.texture, usage);
810 surf_tmpl.u.tex.level = stimg.level;
811 surf_tmpl.u.tex.first_layer = stimg.layer;
812 surf_tmpl.u.tex.last_layer = stimg.layer;
813 ps = st->pipe->create_surface(st->pipe, stimg.texture, &surf_tmpl);
H A Dst_cb_texture.c933 struct pipe_surface surf_tmpl; local
1063 memset(&surf_tmpl, 0, sizeof(surf_tmpl));
1064 surf_tmpl.format = util_format_linear(stImage->pt->format);
1065 surf_tmpl.usage = dst_usage;
1066 surf_tmpl.u.tex.level = stImage->base.Level;
1067 surf_tmpl.u.tex.first_layer = stImage->base.Face + destZ;
1068 surf_tmpl.u.tex.last_layer = stImage->base.Face + destZ;
1071 &surf_tmpl);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_texture.c558 const struct pipe_surface *surf_tmpl)
562 assert(surf_tmpl->u.tex.level <= pt->last_level);
569 ps->format = surf_tmpl->format;
570 ps->width = u_minify(pt->width0, surf_tmpl->u.tex.level);
571 ps->height = u_minify(pt->height0, surf_tmpl->u.tex.level);
572 ps->usage = surf_tmpl->usage;
574 ps->u.tex.level = surf_tmpl->u.tex.level;
575 ps->u.tex.first_layer = surf_tmpl->u.tex.first_layer;
576 ps->u.tex.last_layer = surf_tmpl->u.tex.last_layer;
556 llvmpipe_create_surface(struct pipe_context *pipe, struct pipe_resource *pt, const struct pipe_surface *surf_tmpl) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
H A Dr300_render.c1262 struct pipe_surface *srcsurf, *dstsurf, surf_tmpl; local
1268 memset(&surf_tmpl, 0, sizeof(surf_tmpl));
1269 surf_tmpl.format = info->src.res->format;
1270 surf_tmpl.u.tex.first_layer =
1271 surf_tmpl.u.tex.last_layer = info->src.layer;
1272 srcsurf = pipe->create_surface(pipe, info->src.res, &surf_tmpl);
1275 surf_tmpl.format = info->dst.res->format;
1276 surf_tmpl.u.tex.level = info->dst.level;
1277 surf_tmpl
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/rbug/
H A Drbug_context.c988 const struct pipe_surface *surf_tmpl)
999 surf_tmpl);
986 rbug_context_create_surface(struct pipe_context *_pipe, struct pipe_resource *_resource, const struct pipe_surface *surf_tmpl) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/trace/
H A Dtr_context.c940 const struct pipe_surface *surf_tmpl)
953 trace_dump_arg_begin("surf_tmpl");
954 trace_dump_surface_template(surf_tmpl, resource->target);
958 result = pipe->create_surface(pipe, resource, surf_tmpl);
938 trace_context_create_surface(struct pipe_context *_pipe, struct pipe_resource *_resource, const struct pipe_surface *surf_tmpl) argument
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_cb_texture.c933 struct pipe_surface surf_tmpl; local
1063 memset(&surf_tmpl, 0, sizeof(surf_tmpl));
1064 surf_tmpl.format = util_format_linear(stImage->pt->format);
1065 surf_tmpl.usage = dst_usage;
1066 surf_tmpl.u.tex.level = stImage->base.Level;
1067 surf_tmpl.u.tex.first_layer = stImage->base.Face + destZ;
1068 surf_tmpl.u.tex.last_layer = stImage->base.Face + destZ;
1071 &surf_tmpl);
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_texture.c558 const struct pipe_surface *surf_tmpl)
562 assert(surf_tmpl->u.tex.level <= pt->last_level);
569 ps->format = surf_tmpl->format;
570 ps->width = u_minify(pt->width0, surf_tmpl->u.tex.level);
571 ps->height = u_minify(pt->height0, surf_tmpl->u.tex.level);
572 ps->usage = surf_tmpl->usage;
574 ps->u.tex.level = surf_tmpl->u.tex.level;
575 ps->u.tex.first_layer = surf_tmpl->u.tex.first_layer;
576 ps->u.tex.last_layer = surf_tmpl->u.tex.last_layer;
556 llvmpipe_create_surface(struct pipe_context *pipe, struct pipe_resource *pt, const struct pipe_surface *surf_tmpl) argument
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_render.c1262 struct pipe_surface *srcsurf, *dstsurf, surf_tmpl; local
1268 memset(&surf_tmpl, 0, sizeof(surf_tmpl));
1269 surf_tmpl.format = info->src.res->format;
1270 surf_tmpl.u.tex.first_layer =
1271 surf_tmpl.u.tex.last_layer = info->src.layer;
1272 srcsurf = pipe->create_surface(pipe, info->src.res, &surf_tmpl);
1275 surf_tmpl.format = info->dst.res->format;
1276 surf_tmpl.u.tex.level = info->dst.level;
1277 surf_tmpl
[all...]
/external/mesa3d/src/gallium/drivers/rbug/
H A Drbug_context.c988 const struct pipe_surface *surf_tmpl)
999 surf_tmpl);
986 rbug_context_create_surface(struct pipe_context *_pipe, struct pipe_resource *_resource, const struct pipe_surface *surf_tmpl) argument
/external/mesa3d/src/gallium/drivers/trace/
H A Dtr_context.c940 const struct pipe_surface *surf_tmpl)
953 trace_dump_arg_begin("surf_tmpl");
954 trace_dump_surface_template(surf_tmpl, resource->target);
958 result = pipe->create_surface(pipe, resource, surf_tmpl);
938 trace_context_create_surface(struct pipe_context *_pipe, struct pipe_resource *_resource, const struct pipe_surface *surf_tmpl) argument
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_blitter.c1516 struct pipe_surface *srcsurf, *dstsurf, surf_tmpl; local
1529 memset(&surf_tmpl, 0, sizeof(surf_tmpl));
1530 surf_tmpl.format = dst->format;
1531 surf_tmpl.u.tex.level = dst_level;
1532 surf_tmpl.u.tex.first_layer = dst_layer;
1533 surf_tmpl.u.tex.last_layer = dst_layer;
1534 surf_tmpl.usage = PIPE_BIND_RENDER_TARGET;
1536 dstsurf = pipe->create_surface(pipe, dst, &surf_tmpl);
1538 surf_tmpl
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Drenderer.c864 struct pipe_surface *surf, surf_tmpl; local
873 u_surface_default_template(&surf_tmpl, dst,
875 surf = renderer->pipe->create_surface(renderer->pipe, dst, &surf_tmpl);
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_blitter.c1516 struct pipe_surface *srcsurf, *dstsurf, surf_tmpl; local
1529 memset(&surf_tmpl, 0, sizeof(surf_tmpl));
1530 surf_tmpl.format = dst->format;
1531 surf_tmpl.u.tex.level = dst_level;
1532 surf_tmpl.u.tex.first_layer = dst_layer;
1533 surf_tmpl.u.tex.last_layer = dst_layer;
1534 surf_tmpl.usage = PIPE_BIND_RENDER_TARGET;
1536 dstsurf = pipe->create_surface(pipe, dst, &surf_tmpl);
1538 surf_tmpl
[all...]

Completed in 834 milliseconds

123