HomeSort by relevance Sort by last modified time
    Searched refs:scanout (Results 1 - 25 of 30) sorted by null

1 2

  /external/mesa3d/src/gallium/auxiliary/renderonly/
renderonly.c 56 struct renderonly_scanout *scanout; local
58 scanout = CALLOC_STRUCT(renderonly_scanout);
59 if (!scanout)
62 scanout->prime = rsc;
64 return scanout;
68 renderonly_scanout_destroy(struct renderonly_scanout *scanout)
70 FREE(scanout);
78 struct renderonly_scanout *scanout; local
88 scanout = CALLOC_STRUCT(renderonly_scanout);
89 if (!scanout)
141 struct renderonly_scanout *scanout; local
    [all...]
renderonly.h 43 * Create a renderonly_scanout object for scanout resource.
51 * struct renderonly_scanout *scanout;
56 * - Do any special treatment for a scanout resource like importing the GPU
57 * resource into the scanout hw.
80 renderonly_scanout_destroy(struct renderonly_scanout *scanout);
83 renderonly_get_handle(struct renderonly_scanout *scanout,
86 if (!scanout)
89 handle->handle = scanout->handle;
90 handle->stride = scanout->stride;
96 * Create a dumb buffer object for a resource at scanout hw
    [all...]
  /external/drm_gralloc/
gralloc_drm_nouveau.c 72 int tiled, scanout; local
79 scanout = !!(usage & GRALLOC_USAGE_HW_FB);
85 else if (scanout && info->tiled_scanout)
91 if (scanout && !info->tiled_scanout)
129 tile_flags = (scanout && cpp != 2) ? 0x7a00 : 0x7000;
161 if (scanout)
  /external/mesa3d/src/gallium/drivers/ilo/core/
ilo_state_surface.h 96 bool scanout; member in struct:ilo_state_surface
ilo_image.h 180 bool scanout; member in struct:ilo_image
ilo_state_surface.c     [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_screen_cache.h 70 uint32_t scanout:1; member in struct:svga_host_surface_cache_key
svga_screen_cache.c 524 if (key->scanout)
  /external/mesa3d/src/gallium/drivers/etnaviv/
etnaviv_resource.c 217 rsc->scanout = renderonly_scanout_for_resource(&rsc->base, screen->ro);
291 if (rsc->scanout)
292 renderonly_scanout_destroy(rsc->scanout);
357 * set scanout for these buffers too. */
365 tiled->scanout = renderonly_scanout_for_prime(prsc, screen->ro);
366 if (!tiled->scanout)
390 if (renderonly_get_handle(rsc->scanout, handle))
etnaviv_resource.h 61 struct renderonly_scanout *scanout; member in struct:etna_resource
etnaviv_clear_blit.c 592 if (rsc->scanout)
593 etna_copy_resource(pctx, rsc->scanout->prime, prsc, 0, 0);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/drm/
vmwgfx_drm.h 147 * @scanout: Boolean whether the surface is intended to be used as a
148 * scanout.
160 int32_t scanout; member in struct:drm_vmw_surface_create_req
  /bionic/libc/kernel/uapi/drm/
vmwgfx_drm.h 86 __s32 scanout; member in struct:drm_vmw_surface_create_req
  /external/kernel-headers/original/uapi/drm/
vmwgfx_drm.h 175 * @scanout: Boolean whether the surface is intended to be used as a
176 * scanout.
188 __s32 scanout; member in struct:drm_vmw_surface_create_req
899 * @drm_vmw_surface_flag_scanout: Whether the surface is a scanout
  /external/libdrm/include/drm/
vmwgfx_drm.h 170 * @scanout: Boolean whether the surface is intended to be used as a
171 * scanout.
183 __s32 scanout; member in struct:drm_vmw_surface_create_req
889 * @drm_vmw_surface_flag_scanout: Whether the surface is a scanout
  /external/mesa3d/src/amd/vulkan/
radv_image.c 116 create_info->scanout || (device->debug_flags & RADV_DEBUG_NO_DCC) ||
119 if (create_info->scanout)
449 metadata->scanout = (surface->flags & RADEON_SURF_SCANOUT) != 0;
929 .scanout = false,
    [all...]
radv_radeon_winsys.h 244 bool scanout; member in struct:radeon_bo_metadata
radv_wsi.c 171 /* FIXME: Need a way to use X tiling to allow scanout */
176 .scanout = true},
radv_private.h 1094 bool scanout; member in struct:radv_image_create_info
    [all...]
  /external/mesa3d/src/amd/vulkan/winsys/amdgpu/
radv_amdgpu_bo.c 275 if (md->scanout)
  /external/mesa3d/src/gallium/winsys/svga/drm/
vmwgfx_drm.h 172 * @scanout: Boolean whether the surface is intended to be used as a
173 * scanout.
185 int32_t scanout; member in struct:drm_vmw_surface_create_req
892 * @drm_vmw_surface_flag_scanout: Whether the surface is a scanout
  /external/mesa3d/docs/specs/
MESA_drm_image.spec 96 should be usable as a scanout buffer with the DRM kernel
  /external/mesa3d/src/gallium/drivers/radeon/
radeon_winsys.h 244 bool scanout; member in struct:radeon_bo_metadata
  /external/mesa3d/src/gallium/winsys/amdgpu/drm/
amdgpu_bo.c 625 md->scanout = AMDGPU_TILING_GET(tiling_flags, MICRO_TILE_MODE) == 0; /* DISPLAY */
655 if (md->scanout)
  /external/mesa3d/src/gallium/winsys/radeon/drm/
radeon_drm_bo.c 890 md->scanout = bo->rws->gen >= DRV_SI && !(args.tiling_flags & RADEON_TILING_R600_NO_SCANOUT);
925 if (bo->rws->gen >= DRV_SI && !md->scanout)
    [all...]

Completed in 748 milliseconds

1 2