HomeSort by relevance Sort by last modified time
    Searched refs:surfaces (Results 26 - 50 of 126) sorted by null

12 3 4 5 6

  /hardware/intel/common/libva/va/
va_tpi.h 103 VASurfaceID *surfaces, /* out */
va_tpi.c 44 * Create surfaces with special inputs/requirements
52 VASurfaceID *surfaces, /* out */
65 return tpi->vaCreateSurfacesWithAttribute( ctx, width, height, format, num_surfaces, surfaces, attribute_tpi);
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_video.h 16 struct pipe_surface *surfaces[VL_NUM_COMPONENTS * 2]; member in struct:nouveau_video_buffer
41 struct nouveau_video_buffer *surfaces[8]; member in struct:nouveau_decoder
nouveau_vp3_video.c 56 return buf->surfaces;
71 pipe_surface_reference(&buf->surfaces[i * 2], NULL);
72 pipe_surface_reference(&buf->surfaces[i * 2 + 1], NULL);
157 buffer->surfaces[j * 2] = pipe->create_surface(pipe, buffer->resources[j], &surf_templ);
158 if (!buffer->surfaces[j * 2])
162 buffer->surfaces[j * 2 + 1] = pipe->create_surface(pipe, buffer->resources[j], &surf_templ);
163 if (!buffer->surfaces[j * 2 + 1])
  /external/skia/bench/
SKPAnimationBench.cpp 38 this->surfaces()[j]->getCanvas()->drawPicture(this->picture(), &trans, nullptr);
42 this->surfaces()[j]->getCanvas()->flush();
SKPBench.h 46 const SkTDArray<SkSurface*>& surfaces() const { return fSurfaces; } function in class:SKPBench
  /hardware/intel/common/libmix/mix_video/src/
mixvideoformatenc_mpeg4.c 52 self->surfaces= NULL;
147 VASurfaceID * surfaces; local
445 surfaces = g_malloc(sizeof(VASurfaceID)*numSurfaces);
447 if (surfaces == NULL)
459 numSurfaces, surfaces);
511 self->surfaces = g_malloc(sizeof(VASurfaceID) * self->surface_num);
513 if (self->surfaces == NULL)
517 g_free (surfaces);
523 /*shared surfaces should be put in pool first,
526 self->surfaces[index] = self->ci_shared_surfaces[index];
    [all...]
mixvideoformatenc_preview.c 52 self->surfaces= NULL;
146 VASurfaceID * surfaces; local
398 surfaces = g_malloc(sizeof(VASurfaceID)*numSurfaces);
400 if (surfaces == NULL)
412 numSurfaces, surfaces);
464 self->surfaces = g_malloc(sizeof(VASurfaceID) * self->surface_num);
466 if (self->surfaces == NULL)
470 g_free (surfaces);
476 /*shared surfaces should be put in pool first,
479 self->surfaces[index] = self->ci_shared_surfaces[index]
    [all...]
mixvideoformatenc_h264.c 52 self->surfaces= NULL;
147 VASurfaceID * surfaces; local
460 surfaces = g_malloc(sizeof(VASurfaceID)*numSurfaces);
462 if (surfaces == NULL)
474 numSurfaces, surfaces);
526 self->surfaces = g_malloc(sizeof(VASurfaceID) * self->surface_num);
528 if (self->surfaces == NULL)
532 g_free (surfaces);
538 /*shared surfaces should be put in pool first,
541 self->surfaces[index] = self->ci_shared_surfaces[index]
    [all...]
mixsurfacepool.h 77 GSList *free_list; /* list of free surfaces */
78 GSList *in_use_list; /* list of surfaces in use */
81 gulong high_water_mark; /* most surfaces in use at one time */
142 VASurfaceID *surfaces, guint num_surfaces);
  /external/mesa3d/src/gallium/drivers/r600/
r600_uvd.c 63 struct radeon_surf* surfaces[VL_NUM_COMPONENTS] = {}; local
115 surfaces[i] = &resources[i]->surface;
118 rvid_join_surfaces(ctx->b.ws, pbs, surfaces);
  /external/mesa3d/src/gallium/drivers/radeonsi/
si_uvd.c 47 struct radeon_surf *surfaces[VL_NUM_COMPONENTS] = {}; local
96 surfaces[i] = & resources[i]->surface;
100 rvid_join_surfaces(ctx->b.ws, pbs, surfaces);
  /external/mesa3d/docs/specs/
MESA_configless_context.spec 34 multiple surfaces which have different EGLConfigs. Without this extension
36 with the one used by the context. The only way to render to surfaces with
55 Surfaces"
61 then additional restrictions apply on what surfaces can be used with the
119 mixing single- and double-buffered surfaces with configless contexts.
  /compatibility/cdd/5_multimedia/
5_8_secure-media.md 4 supporting secure surfaces, they:
  /external/mesa3d/src/mesa/main/
vdpau.c 87 GLintptr surfaces[] = { (GLintptr)surf }; local
88 _mesa_VDPAUUnmapSurfacesNV(1, surfaces);
338 _mesa_VDPAUMapSurfacesNV(GLsizei numSurfaces, const GLintptr *surfaces)
349 struct vdp_surface *surf = (struct vdp_surface *)surfaces[i];
363 struct vdp_surface *surf = (struct vdp_surface *)surfaces[i];
392 _mesa_VDPAUUnmapSurfacesNV(GLsizei numSurfaces, const GLintptr *surfaces)
403 struct vdp_surface *surf = (struct vdp_surface *)surfaces[i];
417 struct vdp_surface *surf = (struct vdp_surface *)surfaces[i];
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue17449.go 8 // This code surfaces the duplication at compile time because of generated inline labels.
  /prebuilts/go/linux-x86/test/fixedbugs/
issue17449.go 8 // This code surfaces the duplication at compile time because of generated inline labels.
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_video_buffer.h 48 struct pipe_surface *surfaces[VL_MAX_SURFACES]; member in struct:vl_video_buffer
vl_video_buffer.c 275 pipe_surface_reference(&buf->surfaces[i], NULL);
383 pipe_surface_reference(&buf->surfaces[surf], NULL);
387 if (!buf->surfaces[surf]) {
391 buf->surfaces[surf] = pipe->create_surface(pipe, buf->resources[i], &surf_templ);
392 if (!buf->surfaces[surf])
398 return buf->surfaces;
402 pipe_surface_reference(&buf->surfaces[i], NULL);
  /external/mesa3d/src/gallium/state_trackers/nine/
cubetexture9.h 32 struct NineSurface9 **surfaces; member in struct:NineCubeTexture9
  /external/mesa3d/src/gallium/drivers/svga/
svga_state_sampler.c 238 struct svga_winsys_surface *surfaces[PIPE_MAX_SAMPLERS]; local
250 surfaces[i] = svga_resource_handle(sv->base.texture);
261 surfaces[i] = NULL;
269 surfaces[i] = NULL;
286 surfaces);
  /external/mesa3d/src/gallium/state_trackers/va/
postproc.c 59 struct pipe_surface **surfaces; local
63 surfaces = dst->get_surfaces(dst);
64 if (!surfaces || !surfaces[0])
81 vl_compositor_render(&drv->cstate, &drv->compositor, surfaces[0], NULL, false);
  /external/mesa3d/src/gallium/state_trackers/vdpau/
surface.c 381 struct pipe_surface **surfaces; local
387 surfaces = vlsurf->video_buffer->get_surfaces(vlsurf->video_buffer);
391 if (!surfaces[i])
397 pipe->clear_render_target(pipe, surfaces[i], &c, 0, 0,
398 surfaces[i]->width, surfaces[i]->height, false);
  /external/mesa3d/src/gallium/drivers/nouveau/nv50/
nv84_video.h 53 struct pipe_surface *surfaces[VL_NUM_COMPONENTS * 2]; member in struct:nv84_video_buffer
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv04_state_tex.c 77 s = &to_nouveau_texture(t)->surfaces[t->BaseLevel];

Completed in 502 milliseconds

12 3 4 5 6