OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:samplerd
(Results
1 - 2
of
2
) sorted by null
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11app/
d3d11u.h
195
D3D11_SAMPLER_DESC
samplerd
;
local
196
memset(&
samplerd
, 0, sizeof(
samplerd
));
197
samplerd
.Filter = i ? D3D11_FILTER_MIN_MAG_MIP_LINEAR : D3D11_FILTER_MIN_MAG_MIP_LINEAR;
198
samplerd
.AddressU =
samplerd
.AddressV =
samplerd
.AddressW = D3D11_TEXTURE_ADDRESS_CLAMP;
199
dev->CreateSamplerState(&
samplerd
, &sampler[i]);
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d11/
d3d11_context.h
210
struct pipe_sampler_state
samplerd
;
local
211
memset(&
samplerd
, 0, sizeof(
samplerd
));
212
samplerd
.normalized_coords = 1;
213
samplerd
.min_img_filter = PIPE_TEX_FILTER_LINEAR;
214
samplerd
.mag_img_filter = PIPE_TEX_FILTER_LINEAR;
215
samplerd
.min_mip_filter = PIPE_TEX_MIPFILTER_LINEAR;
216
samplerd
.wrap_r = PIPE_TEX_WRAP_CLAMP_TO_EDGE;
217
samplerd
.wrap_s = PIPE_TEX_WRAP_CLAMP_TO_EDGE;
218
samplerd
.wrap_t = PIPE_TEX_WRAP_CLAMP_TO_EDGE
[
all
...]
Completed in 2848 milliseconds