Home
last modified time | relevance | path

Searched refs:pipeFormat (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/gallium/drivers/i915/
Di915_state_sampler.c193 static uint translate_texture_format(enum pipe_format pipeFormat, in translate_texture_format() argument
200 pipeFormat != PIPE_FORMAT_Z24_UNORM_S8_UINT && in translate_texture_format()
201 pipeFormat != PIPE_FORMAT_Z24X8_UNORM ) in translate_texture_format()
202 debug_printf("i915: unsupported texture swizzle for format %d\n", pipeFormat); in translate_texture_format()
204 switch (pipeFormat) { in translate_texture_format()
275 pipeFormat); in translate_texture_format()
/external/mesa3d/src/mesa/state_tracker/
Dst_format.h51 st_pipe_format_to_mesa_format(enum pipe_format pipeFormat);
Dst_cb_drawpixels.c390 enum pipe_format pipeFormat; in make_texture() local
437 pipeFormat = st_choose_matching_format(st, PIPE_BIND_SAMPLER_VIEW, in make_texture()
440 if (pipeFormat == PIPE_FORMAT_NONE) { in make_texture()
444 pipeFormat = st_choose_format(st, intFormat, format, type, in make_texture()
447 assert(pipeFormat != PIPE_FORMAT_NONE); in make_texture()
450 mformat = st_pipe_format_to_mesa_format(pipeFormat); in make_texture()
458 pt = alloc_texture(st, width, height, pipeFormat, PIPE_BIND_SAMPLER_VIEW); in make_texture()