Searched refs:sv_temp (Results 1 – 6 of 6) sorted by relevance
/external/mesa3d/src/gallium/tests/graw/ |
D | tex-srgb.c | 172 struct pipe_sampler_view sv_temp; in init_tex() local 173 memset(&sv_temp, 0, sizeof sv_temp); in init_tex() 174 sv_temp.format = PIPE_FORMAT_B8G8R8A8_UNORM; in init_tex() 175 sv_temp.texture = texture; in init_tex() 176 sv_temp.swizzle_r = PIPE_SWIZZLE_RED; in init_tex() 177 sv_temp.swizzle_g = PIPE_SWIZZLE_GREEN; in init_tex() 178 sv_temp.swizzle_b = PIPE_SWIZZLE_BLUE; in init_tex() 179 sv_temp.swizzle_a = PIPE_SWIZZLE_ALPHA; in init_tex() 180 linear_sv = info.ctx->create_sampler_view(info.ctx, texture, &sv_temp); in init_tex() 187 struct pipe_sampler_view sv_temp; in init_tex() local [all …]
|
D | graw_util.h | 314 struct pipe_sampler_view sv_temp; in graw_util_create_simple_sampler_view() local 317 memset(&sv_temp, 0, sizeof(sv_temp)); in graw_util_create_simple_sampler_view() 318 sv_temp.format = texture->format; in graw_util_create_simple_sampler_view() 319 sv_temp.texture = texture; in graw_util_create_simple_sampler_view() 320 sv_temp.swizzle_r = PIPE_SWIZZLE_RED; in graw_util_create_simple_sampler_view() 321 sv_temp.swizzle_g = PIPE_SWIZZLE_GREEN; in graw_util_create_simple_sampler_view() 322 sv_temp.swizzle_b = PIPE_SWIZZLE_BLUE; in graw_util_create_simple_sampler_view() 323 sv_temp.swizzle_a = PIPE_SWIZZLE_ALPHA; in graw_util_create_simple_sampler_view() 325 sv = info->ctx->create_sampler_view(info->ctx, texture, &sv_temp); in graw_util_create_simple_sampler_view()
|
/external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/ |
D | tex-srgb.c | 172 struct pipe_sampler_view sv_temp; in init_tex() local 173 memset(&sv_temp, 0, sizeof sv_temp); in init_tex() 174 sv_temp.format = PIPE_FORMAT_B8G8R8A8_UNORM; in init_tex() 175 sv_temp.texture = texture; in init_tex() 176 sv_temp.swizzle_r = PIPE_SWIZZLE_RED; in init_tex() 177 sv_temp.swizzle_g = PIPE_SWIZZLE_GREEN; in init_tex() 178 sv_temp.swizzle_b = PIPE_SWIZZLE_BLUE; in init_tex() 179 sv_temp.swizzle_a = PIPE_SWIZZLE_ALPHA; in init_tex() 180 linear_sv = info.ctx->create_sampler_view(info.ctx, texture, &sv_temp); in init_tex() 187 struct pipe_sampler_view sv_temp; in init_tex() local [all …]
|
D | graw_util.h | 314 struct pipe_sampler_view sv_temp; in graw_util_create_simple_sampler_view() local 317 memset(&sv_temp, 0, sizeof(sv_temp)); in graw_util_create_simple_sampler_view() 318 sv_temp.format = texture->format; in graw_util_create_simple_sampler_view() 319 sv_temp.texture = texture; in graw_util_create_simple_sampler_view() 320 sv_temp.swizzle_r = PIPE_SWIZZLE_RED; in graw_util_create_simple_sampler_view() 321 sv_temp.swizzle_g = PIPE_SWIZZLE_GREEN; in graw_util_create_simple_sampler_view() 322 sv_temp.swizzle_b = PIPE_SWIZZLE_BLUE; in graw_util_create_simple_sampler_view() 323 sv_temp.swizzle_a = PIPE_SWIZZLE_ALPHA; in graw_util_create_simple_sampler_view() 325 sv = info->ctx->create_sampler_view(info->ctx, texture, &sv_temp); in graw_util_create_simple_sampler_view()
|
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/ |
D | st_cb_texture.c | 582 struct pipe_sampler_view sv_temp; in decompress_with_blit() local 584 u_sampler_view_default_template(&sv_temp, stObj->pt, stObj->pt->format); in decompress_with_blit() 586 sv_temp.format = util_format_linear(sv_temp.format); in decompress_with_blit() 587 sv_temp.u.tex.first_level = in decompress_with_blit() 588 sv_temp.u.tex.last_level = texImage->Level; in decompress_with_blit() 590 src_view = pipe->create_sampler_view(pipe, stObj->pt, &sv_temp); in decompress_with_blit()
|
/external/mesa3d/src/mesa/state_tracker/ |
D | st_cb_texture.c | 582 struct pipe_sampler_view sv_temp; in decompress_with_blit() local 584 u_sampler_view_default_template(&sv_temp, stObj->pt, stObj->pt->format); in decompress_with_blit() 586 sv_temp.format = util_format_linear(sv_temp.format); in decompress_with_blit() 587 sv_temp.u.tex.first_level = in decompress_with_blit() 588 sv_temp.u.tex.last_level = texImage->Level; in decompress_with_blit() 590 src_view = pipe->create_sampler_view(pipe, stObj->pt, &sv_temp); in decompress_with_blit()
|