HomeSort by relevance Sort by last modified time
    Searched refs:surf (Results 51 - 75 of 164) sorted by null

1 23 4 5 6 7

  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
mask.c 129 struct pipe_surface *surf; local
131 surf = pipe->create_surface(pipe, strb->texture, 0, 0, 0,
139 pipe_get_tile_rgba(surf, sx, y, width, 1, df);
146 pipe_surface_reference(&surf, NULL);
398 struct pipe_surface *surf, surf_tmpl; local
403 surf = ctx->pipe->create_surface(ctx->pipe, layer->sampler_view->texture,
405 if (surf && renderer_copy_begin(ctx->renderer, surf, VG_FALSE, src)) {
416 pipe_surface_reference(&surf, NULL);
427 struct pipe_surface *surf, surf_tmpl local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
mask.c 129 struct pipe_surface *surf; local
131 surf = pipe->create_surface(pipe, strb->texture, 0, 0, 0,
139 pipe_get_tile_rgba(surf, sx, y, width, 1, df);
146 pipe_surface_reference(&surf, NULL);
398 struct pipe_surface *surf, surf_tmpl; local
403 surf = ctx->pipe->create_surface(ctx->pipe, layer->sampler_view->texture,
405 if (surf && renderer_copy_begin(ctx->renderer, surf, VG_FALSE, src)) {
416 pipe_surface_reference(&surf, NULL);
427 struct pipe_surface *surf, surf_tmpl local
    [all...]
  /external/chromium_org/skia/ext/
bitmap_platform_device_linux.cc 203 cairo_surface_t* surf = cairo_image_surface_create_for_data( local
209 if (cairo_surface_status(surf) != CAIRO_STATUS_SUCCESS) {
210 cairo_surface_destroy(surf);
214 surface_ = cairo_create(surf);
215 cairo_surface_destroy(surf);
  /external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/
tri-instanced.c 30 static struct pipe_surface *surf = NULL; variable in typeref:struct:pipe_surface
219 graw_save_surface_to_file(ctx, surf, NULL);
275 surf = ctx->create_surface(ctx, tex, &surf_tmpl);
276 if (surf == NULL)
283 fb.cbufs[0] = surf;
shader-leak.c 31 static struct pipe_surface *surf = NULL; variable in typeref:struct:pipe_surface
217 surf = ctx->create_surface(ctx, tex, &surf_tmpl);
218 if (surf == NULL) {
227 fb.cbufs[0] = surf;
tri-gs.c 27 static struct pipe_surface *surf = NULL; variable in typeref:struct:pipe_surface
224 surf = ctx->create_surface(ctx, tex, &surf_tmpl);
225 if (surf == NULL)
232 fb.cbufs[0] = surf;
  /external/mesa3d/src/gallium/tests/graw/
tri-instanced.c 30 static struct pipe_surface *surf = NULL; variable in typeref:struct:pipe_surface
219 graw_save_surface_to_file(ctx, surf, NULL);
275 surf = ctx->create_surface(ctx, tex, &surf_tmpl);
276 if (surf == NULL)
283 fb.cbufs[0] = surf;
shader-leak.c 31 static struct pipe_surface *surf = NULL; variable in typeref:struct:pipe_surface
217 surf = ctx->create_surface(ctx, tex, &surf_tmpl);
218 if (surf == NULL) {
227 fb.cbufs[0] = surf;
tri-gs.c 27 static struct pipe_surface *surf = NULL; variable in typeref:struct:pipe_surface
224 surf = ctx->create_surface(ctx, tex, &surf_tmpl);
225 if (surf == NULL)
232 fb.cbufs[0] = surf;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/postprocess/
pp_run.c 125 p->surf.format = out->format;
126 p->surf.usage = PIPE_BIND_RENDER_TARGET;
128 p->framebuffer.cbufs[0] = p->pipe->create_surface(p->pipe, out, &p->surf);
pp_program.c 140 p->surf.usage = PIPE_BIND_RENDER_TARGET;
141 p->surf.format = PIPE_FORMAT_B8G8R8A8_UNORM;
  /external/mesa3d/src/gallium/auxiliary/postprocess/
pp_run.c 125 p->surf.format = out->format;
126 p->surf.usage = PIPE_BIND_RENDER_TARGET;
128 p->framebuffer.cbufs[0] = p->pipe->create_surface(p->pipe, out, &p->surf);
pp_program.c 140 p->surf.usage = PIPE_BIND_RENDER_TARGET;
141 p->surf.format = PIPE_FORMAT_B8G8R8A8_UNORM;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
vl_video_buffer.c 352 unsigned i, j, depth, surf; local
359 for (i = 0, surf = 0; i < depth; ++i ) {
360 for (j = 0; j < VL_NUM_COMPONENTS; ++j, ++surf) {
361 assert(surf < (VL_NUM_COMPONENTS * 2));
364 pipe_surface_reference(&buf->surfaces[surf], NULL);
368 if (!buf->surfaces[surf]) {
373 buf->surfaces[surf] = pipe->create_surface(pipe, buf->resources[j], &surf_templ);
374 if (!buf->surfaces[surf])
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_video_buffer.c 352 unsigned i, j, depth, surf; local
359 for (i = 0, surf = 0; i < depth; ++i ) {
360 for (j = 0; j < VL_NUM_COMPONENTS; ++j, ++surf) {
361 assert(surf < (VL_NUM_COMPONENTS * 2));
364 pipe_surface_reference(&buf->surfaces[surf], NULL);
368 if (!buf->surfaces[surf]) {
373 buf->surfaces[surf] = pipe->create_surface(pipe, buf->resources[j], &surf_templ);
374 if (!buf->surfaces[surf])
  /hardware/ril/reference-ril/
Android.mk 26 ifeq ($(TARGET_DEVICE),surf)
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
evergreen_compute_internal.c 269 struct r600_surface *surf; local
297 surf = (struct r600_surface*)pipe->ctx->framebuffer.cbufs[id];
298 res = (struct r600_resource*)surf->base.texture;
300 evergreen_init_color_surface(rctx, surf);
304 surf->cb_color_base, res, RADEON_USAGE_READWRITE);
306 surf->cb_color_dim);
308 surf->cb_color_info, res, RADEON_USAGE_READWRITE);
310 surf->cb_color_pitch);
312 surf->cb_color_slice);
314 surf->cb_color_view)
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/
evergreen_compute_internal.c 269 struct r600_surface *surf; local
297 surf = (struct r600_surface*)pipe->ctx->framebuffer.cbufs[id];
298 res = (struct r600_resource*)surf->base.texture;
300 evergreen_init_color_surface(rctx, surf);
304 surf->cb_color_base, res, RADEON_USAGE_READWRITE);
306 surf->cb_color_dim);
308 surf->cb_color_info, res, RADEON_USAGE_READWRITE);
310 surf->cb_color_pitch);
312 surf->cb_color_slice);
314 surf->cb_color_view)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
r300_texture.c 884 static void r300_texture_setup_fb_state(struct r300_surface *surf)
886 struct r300_resource *tex = r300_resource(surf->base.texture);
887 unsigned level = surf->base.u.tex.level;
889 r300_stride_to_width(surf->base.format, tex->tex.stride_in_bytes[level]);
892 if (util_format_is_depth_or_stencil(surf->base.format)) {
893 surf->pitch =
897 surf->format = r300_translate_zsformat(surf->base.format);
898 surf->pitch_zmask = tex->tex.zmask_stride_in_pixels[level];
899 surf->pitch_hiz = tex->tex.hiz_stride_in_pixels[level]
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_state.h 208 void gen7_set_surface_tiling(struct gen7_surface_state *surf, uint32_t tiling);
209 void gen7_set_surface_msaa(struct gen7_surface_state *surf,
213 struct gen7_surface_state *surf,
217 void gen7_check_surface_setup(struct gen7_surface_state *surf,
  /external/mesa3d/src/gallium/drivers/r300/
r300_texture.c 884 static void r300_texture_setup_fb_state(struct r300_surface *surf)
886 struct r300_resource *tex = r300_resource(surf->base.texture);
887 unsigned level = surf->base.u.tex.level;
889 r300_stride_to_width(surf->base.format, tex->tex.stride_in_bytes[level]);
892 if (util_format_is_depth_or_stencil(surf->base.format)) {
893 surf->pitch =
897 surf->format = r300_translate_zsformat(surf->base.format);
898 surf->pitch_zmask = tex->tex.zmask_stride_in_pixels[level];
899 surf->pitch_hiz = tex->tex.hiz_stride_in_pixels[level]
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_state.h 208 void gen7_set_surface_tiling(struct gen7_surface_state *surf, uint32_t tiling);
209 void gen7_set_surface_msaa(struct gen7_surface_state *surf,
213 struct gen7_surface_state *surf,
217 void gen7_check_surface_setup(struct gen7_surface_state *surf,
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vdpau/
mixer.c 223 vlVdpSurface *surf; local
234 surf = vlGetDataHTAB(video_surface_current);
235 if (!surf)
238 if (surf->device != vmixer->device)
241 if (vmixer->video_width > surf->video_buffer->width ||
242 vmixer->video_height > surf->video_buffer->height ||
243 vmixer->chroma_format != surf->video_buffer->chroma_format)
288 rect.x1 = surf->templat.width;
289 rect.y1 = surf->templat.height;
292 vl_compositor_set_buffer_layer(&vmixer->cstate, compositor, layer, surf->video_buffer, prect, NULL, deinterlace)
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vdpau/
mixer.c 223 vlVdpSurface *surf; local
234 surf = vlGetDataHTAB(video_surface_current);
235 if (!surf)
238 if (surf->device != vmixer->device)
241 if (vmixer->video_width > surf->video_buffer->width ||
242 vmixer->video_height > surf->video_buffer->height ||
243 vmixer->chroma_format != surf->video_buffer->chroma_format)
288 rect.x1 = surf->templat.width;
289 rect.y1 = surf->templat.height;
292 vl_compositor_set_buffer_layer(&vmixer->cstate, compositor, layer, surf->video_buffer, prect, NULL, deinterlace)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_surface.c 51 u_surface_default_template(struct pipe_surface *surf,
55 memset(surf, 0, sizeof(*surf));
57 surf->format = texture->format;
59 surf->usage = bind;

Completed in 3177 milliseconds

1 23 4 5 6 7