OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:sv_temp
(Results
1 - 3
of
3
) sorted by null
/external/mesa3d/src/gallium/tests/graw/
tex-srgb.c
172
struct pipe_sampler_view
sv_temp
;
local
173
memset(&
sv_temp
, 0, sizeof
sv_temp
);
174
sv_temp
.format = PIPE_FORMAT_B8G8R8A8_UNORM;
175
sv_temp
.texture = texture;
176
sv_temp
.swizzle_r = PIPE_SWIZZLE_RED;
177
sv_temp
.swizzle_g = PIPE_SWIZZLE_GREEN;
178
sv_temp
.swizzle_b = PIPE_SWIZZLE_BLUE;
179
sv_temp
.swizzle_a = PIPE_SWIZZLE_ALPHA;
180
linear_sv = info.ctx->create_sampler_view(info.ctx, texture, &
sv_temp
);
187
struct pipe_sampler_view
sv_temp
;
local
[
all
...]
graw_util.h
314
struct pipe_sampler_view
sv_temp
;
local
317
memset(&
sv_temp
, 0, sizeof(
sv_temp
));
318
sv_temp
.format = texture->format;
319
sv_temp
.texture = texture;
320
sv_temp
.swizzle_r = PIPE_SWIZZLE_RED;
321
sv_temp
.swizzle_g = PIPE_SWIZZLE_GREEN;
322
sv_temp
.swizzle_b = PIPE_SWIZZLE_BLUE;
323
sv_temp
.swizzle_a = PIPE_SWIZZLE_ALPHA;
325
sv = info->ctx->create_sampler_view(info->ctx, texture, &
sv_temp
);
[
all
...]
/external/mesa3d/src/mesa/state_tracker/
st_cb_texture.c
582
struct pipe_sampler_view
sv_temp
;
local
584
u_sampler_view_default_template(&
sv_temp
, stObj->pt, stObj->pt->format);
586
sv_temp
.format = util_format_linear(
sv_temp
.format);
587
sv_temp
.u.tex.first_level =
588
sv_temp
.u.tex.last_level = texImage->Level;
590
src_view = pipe->create_sampler_view(pipe, stObj->pt, &
sv_temp
);
[
all
...]
Completed in 107 milliseconds