/third_party/mesa3d/src/gallium/frontends/dri/ |
D | dri2.c | 854 unsigned tex_usage = 0; in dri2_create_image_from_winsys() local 861 tex_usage |= PIPE_BIND_RENDER_TARGET; in dri2_create_image_from_winsys() 864 tex_usage |= PIPE_BIND_SAMPLER_VIEW; in dri2_create_image_from_winsys() 867 if (!tex_usage && map->pipe_format == PIPE_FORMAT_NV12 && in dri2_create_image_from_winsys() 871 tex_usage |= PIPE_BIND_SAMPLER_VIEW; in dri2_create_image_from_winsys() 877 if (!tex_usage && map->pipe_format == PIPE_FORMAT_YUYV && in dri2_create_image_from_winsys() 881 tex_usage |= PIPE_BIND_SAMPLER_VIEW; in dri2_create_image_from_winsys() 884 if (!tex_usage && map->pipe_format == PIPE_FORMAT_UYVY && in dri2_create_image_from_winsys() 888 tex_usage |= PIPE_BIND_SAMPLER_VIEW; in dri2_create_image_from_winsys() 891 if (!tex_usage && util_format_is_yuv(map->pipe_format)) { in dri2_create_image_from_winsys() [all …]
|
/third_party/mesa3d/src/gallium/include/frontend/ |
D | sw_winsys.h | 71 unsigned tex_usage, 87 unsigned tex_usage,
|
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_texture.c | 479 enum lp_texture_usage tex_usage) in llvmpipe_resource_map() argument 487 assert(tex_usage == LP_TEX_USAGE_READ || in llvmpipe_resource_map() 488 tex_usage == LP_TEX_USAGE_READ_WRITE || in llvmpipe_resource_map() 489 tex_usage == LP_TEX_USAGE_WRITE_ALL); in llvmpipe_resource_map() 497 if (tex_usage == LP_TEX_USAGE_READ) { in llvmpipe_resource_map() 686 enum lp_texture_usage tex_usage; in llvmpipe_transfer_map_ms() local 749 tex_usage = LP_TEX_USAGE_READ; in llvmpipe_transfer_map_ms() 753 tex_usage = LP_TEX_USAGE_READ_WRITE; in llvmpipe_transfer_map_ms() 766 tex_usage); in llvmpipe_transfer_map_ms()
|
D | lp_texture.h | 231 enum lp_texture_usage tex_usage);
|
/third_party/mesa3d/src/gallium/winsys/sw/null/ |
D | null_sw_winsys.c | 48 unsigned tex_usage, in null_sw_is_displaytarget_format_supported() argument 83 unsigned tex_usage, in null_sw_displaytarget_create() argument
|
/third_party/mesa3d/src/gallium/drivers/i915/ |
D | i915_screen.c | 544 unsigned storage_sample_count, unsigned tex_usage) in i915_is_format_supported() argument 585 if (tex_usage & PIPE_BIND_DEPTH_STENCIL) in i915_is_format_supported() 587 else if (tex_usage & PIPE_BIND_RENDER_TARGET) in i915_is_format_supported() 589 else if (tex_usage & PIPE_BIND_SAMPLER_VIEW) in i915_is_format_supported()
|
D | i915_screen.h | 65 unsigned storage_sample_count, unsigned tex_usage);
|
/third_party/mesa3d/src/gallium/auxiliary/rbug/ |
D | rbug_texture.h | 109 uint32_t tex_usage; member 178 uint32_t tex_usage,
|
D | rbug_texture.c | 297 uint32_t tex_usage, in rbug_send_texture_info_reply() argument 346 WRITE(4, uint32_t, tex_usage); /* tex_usage */ in rbug_send_texture_info_reply() 597 READ(4, uint32_t, tex_usage); /* tex_usage */ in rbug_demarshal_texture_info_reply()
|
/third_party/mesa3d/src/gallium/winsys/sw/gdi/ |
D | gdi_sw_winsys.c | 74 unsigned tex_usage, in gdi_sw_is_displaytarget_format_supported() argument 123 unsigned tex_usage, in gdi_sw_displaytarget_create() argument
|
/third_party/mesa3d/src/gallium/winsys/sw/dri/ |
D | dri_sw_winsys.c | 88 unsigned tex_usage, in dri_sw_is_displaytarget_format_supported() argument 119 unsigned tex_usage, in dri_sw_displaytarget_create() argument
|
/third_party/mesa3d/src/gallium/winsys/sw/xlib/ |
D | xlib_sw_winsys.c | 225 unsigned tex_usage, in xlib_is_displaytarget_format_supported() argument 401 unsigned tex_usage, in xlib_displaytarget_create() argument
|
/third_party/mesa3d/src/gallium/drivers/zink/ |
D | zink_kopper.h | 109 zink_kopper_displaytarget_create(struct zink_screen *screen, unsigned tex_usage,
|
D | zink_kopper.c | 352 zink_kopper_displaytarget_create(struct zink_screen *screen, unsigned tex_usage, in zink_kopper_displaytarget_create() argument
|
/third_party/mesa3d/src/gallium/winsys/sw/kms-dri/ |
D | kms_dri_sw_winsys.c | 123 unsigned tex_usage, in kms_sw_is_displaytarget_format_supported() argument 165 unsigned tex_usage, in kms_sw_displaytarget_create() argument
|
/third_party/mesa3d/src/mesa/state_tracker/ |
D | st_texture.h | 160 GLuint tex_usage,
|
/third_party/mesa3d/src/gallium/auxiliary/driver_rbug/ |
D | rbug_screen.c | 137 unsigned tex_usage) in rbug_screen_is_format_supported() argument 147 tex_usage); in rbug_screen_is_format_supported()
|
/third_party/mesa3d/src/gallium/auxiliary/driver_ddebug/ |
D | dd_screen.c | 151 unsigned tex_usage) in dd_screen_is_format_supported() argument 156 storage_sample_count, tex_usage); in dd_screen_is_format_supported()
|
/third_party/mesa3d/src/gallium/winsys/sw/wrapper/ |
D | wrapper_sw_winsys.c | 89 unsigned tex_usage, in wsw_is_dt_format_supported() argument
|
/third_party/mesa3d/src/gallium/auxiliary/driver_trace/ |
D | tr_screen.c | 257 unsigned tex_usage) in trace_screen_is_format_supported() argument 270 trace_dump_arg(uint, tex_usage); in trace_screen_is_format_supported() 273 storage_sample_count, tex_usage); in trace_screen_is_format_supported()
|
/third_party/mesa3d/src/gallium/frontends/glx/xlib/ |
D | xm_api.c | 469 const unsigned tex_usage = PIPE_BIND_DEPTH_STENCIL; in choose_depth_stencil_format() local 494 sample_count, tex_usage)) { in choose_depth_stencil_format()
|