OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:setsamplerstate
(Results
1 - 9
of
9
) sorted by null
/external/chromium_org/ui/surface/
accelerated_surface_transformer_win.cc
293
device()->
SetSamplerState
(0, D3DSAMP_MAGFILTER, D3DTEXF_POINT);
294
device()->
SetSamplerState
(0, D3DSAMP_MINFILTER, D3DTEXF_POINT);
296
device()->
SetSamplerState
(0, D3DSAMP_MAGFILTER, D3DTEXF_LINEAR);
297
device()->
SetSamplerState
(0, D3DSAMP_MINFILTER, D3DTEXF_LINEAR);
299
device()->
SetSamplerState
(0, D3DSAMP_ADDRESSU, D3DTADDRESS_CLAMP);
300
device()->
SetSamplerState
(0, D3DSAMP_ADDRESSV, D3DTADDRESS_CLAMP);
606
device()->
SetSamplerState
(0, D3DSAMP_ADDRESSU, D3DTADDRESS_CLAMP);
607
device()->
SetSamplerState
(0, D3DSAMP_ADDRESSV, D3DTADDRESS_CLAMP);
616
device()->
SetSamplerState
(0, D3DSAMP_MAGFILTER, D3DTEXF_LINEAR);
617
device()->
SetSamplerState
(0, D3DSAMP_MINFILTER, D3DTEXF_LINEAR)
[
all
...]
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
Blit.cpp
200
device->
SetSamplerState
(0, D3DSAMP_MINFILTER, D3DTEXF_LINEAR);
201
device->
SetSamplerState
(0, D3DSAMP_MAGFILTER, D3DTEXF_LINEAR);
491
device->
SetSamplerState
(0, D3DSAMP_MAGFILTER, D3DTEXF_POINT);
492
device->
SetSamplerState
(0, D3DSAMP_MINFILTER, D3DTEXF_POINT);
493
device->
SetSamplerState
(0, D3DSAMP_SRGBTEXTURE, FALSE);
494
device->
SetSamplerState
(0, D3DSAMP_ADDRESSU, D3DTADDRESS_CLAMP);
495
device->
SetSamplerState
(0, D3DSAMP_ADDRESSV, D3DTADDRESS_CLAMP);
SwapChain9.cpp
309
device->
SetSamplerState
(0, D3DSAMP_MAGFILTER, D3DTEXF_POINT);
310
device->
SetSamplerState
(0, D3DSAMP_MINFILTER, D3DTEXF_POINT);
311
device->
SetSamplerState
(0, D3DSAMP_ADDRESSU, D3DTADDRESS_CLAMP);
312
device->
SetSamplerState
(0, D3DSAMP_ADDRESSV, D3DTADDRESS_CLAMP);
Renderer.h
118
virtual void
setSamplerState
(gl::SamplerType type, int index, const gl::SamplerState &sampler) = 0;
Renderer11.h
57
virtual void
setSamplerState
(gl::SamplerType type, int index, const gl::SamplerState &sampler);
Renderer9.h
71
virtual void
setSamplerState
(gl::SamplerType type, int index, const gl::SamplerState &sampler);
Renderer9.cpp
754
void Renderer9::
setSamplerState
(gl::SamplerType type, int index, const gl::SamplerState &samplerState)
764
mDevice->
SetSamplerState
(d3dSampler, D3DSAMP_ADDRESSU, gl_d3d9::ConvertTextureWrap(samplerState.wrapS));
765
mDevice->
SetSamplerState
(d3dSampler, D3DSAMP_ADDRESSV, gl_d3d9::ConvertTextureWrap(samplerState.wrapT));
767
mDevice->
SetSamplerState
(d3dSampler, D3DSAMP_MAGFILTER, gl_d3d9::ConvertMagFilter(samplerState.magFilter, samplerState.maxAnisotropy));
770
mDevice->
SetSamplerState
(d3dSampler, D3DSAMP_MINFILTER, d3dMinFilter);
771
mDevice->
SetSamplerState
(d3dSampler, D3DSAMP_MIPFILTER, d3dMipFilter);
772
mDevice->
SetSamplerState
(d3dSampler, D3DSAMP_MAXMIPLEVEL, samplerState.lodOffset);
775
mDevice->
SetSamplerState
(d3dSampler, D3DSAMP_MAXANISOTROPY, (DWORD)samplerState.maxAnisotropy);
[
all
...]
Renderer11.cpp
530
void Renderer11::
setSamplerState
(gl::SamplerType type, int index, const gl::SamplerState &samplerState)
[
all
...]
/external/chromium_org/third_party/angle/src/libGLESv2/
Context.cpp
[
all
...]
Completed in 295 milliseconds