Searched defs:samplerd (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11app/
H A Dd3d11u.h195 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/progs/d3d11app/
H A Dd3d11u.h195 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/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/gd3d11/
H A Dd3d11_context.h210 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
[all...]
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d11/
H A Dd3d11_context.h210 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
[all...]

Completed in 133 milliseconds