Searched refs:SetSamplerState (Results 1 – 7 of 7) sorted by relevance
/external/webrtc/webrtc/modules/video_render/windows/ |
D | video_render_direct3d9.cc | 499 _pd3dDevice->SetSamplerState( 0, D3DSAMP_MINFILTER, D3DTEXF_LINEAR ); in InitDevice() 500 _pd3dDevice->SetSamplerState( 0, D3DSAMP_MAGFILTER, D3DTEXF_LINEAR ); in InitDevice() 501 _pd3dDevice->SetSamplerState( 0, D3DSAMP_MIPFILTER, D3DTEXF_LINEAR ); in InitDevice()
|
/external/swiftshader/src/D3D9/ |
D | Direct3DDevice9.cpp | 2530 SetSamplerState(i, D3DSAMP_ADDRESSU, D3DTADDRESS_WRAP); in Reset() 2531 SetSamplerState(i, D3DSAMP_ADDRESSV, D3DTADDRESS_WRAP); in Reset() 2532 SetSamplerState(i, D3DSAMP_ADDRESSW, D3DTADDRESS_WRAP); in Reset() 2533 SetSamplerState(i, D3DSAMP_BORDERCOLOR, 0x00000000); in Reset() 2534 SetSamplerState(i, D3DSAMP_MAGFILTER, D3DTEXF_POINT); in Reset() 2535 SetSamplerState(i, D3DSAMP_MINFILTER, D3DTEXF_POINT); in Reset() 2536 SetSamplerState(i, D3DSAMP_MIPFILTER, D3DTEXF_NONE); in Reset() 2537 SetSamplerState(i, D3DSAMP_MIPMAPLODBIAS, 0); in Reset() 2538 SetSamplerState(i, D3DSAMP_MAXMIPLEVEL, 0); in Reset() 2539 SetSamplerState(i, D3DSAMP_MAXANISOTROPY, 1); in Reset() [all …]
|
D | Direct3DDevice9Ex.cpp | 768 …long Direct3DDevice9Ex::SetSamplerState(unsigned long sampler, D3DSAMPLERSTATETYPE state, unsigned… in SetSamplerState() function in D3D9::Direct3DDevice9Ex 772 return Direct3DDevice9::SetSamplerState(sampler, state, value); in SetSamplerState()
|
D | Direct3DDevice9Ex.hpp | 126 …long __stdcall SetSamplerState(unsigned long sampler, D3DSAMPLERSTATETYPE state, unsigned long val…
|
D | Direct3DDevice9.hpp | 161 …long __stdcall SetSamplerState(unsigned long sampler, D3DSAMPLERSTATETYPE state, unsigned long val…
|
D | Direct3DStateBlock9.cpp | 183 device->SetSamplerState(index, (D3DSAMPLERSTATETYPE)state, samplerState[sampler][state]); in Apply()
|
/external/mesa3d/include/D3D9/ |
D | d3d9.h | 227 virtual HRESULT WINAPI SetSamplerState(DWORD Sampler, D3DSAMPLERSTATETYPE Type, DWORD Value) = 0; 815 …HRESULT (WINAPI *SetSamplerState)(IDirect3DDevice9 *This, DWORD Sampler, D3DSAMPLERSTATETYPE Type,… 942 #define IDirect3DDevice9_SetSamplerState(p,a,b,c) (p)->lpVtbl->SetSamplerState(p,a,b,c) 1066 …HRESULT (WINAPI *SetSamplerState)(IDirect3DDevice9Ex *This, DWORD Sampler, D3DSAMPLERSTATETYPE Typ… 1209 #define IDirect3DDevice9Ex_SetSamplerState(p,a,b,c) (p)->lpVtbl->SetSamplerState(p,a,b,c)
|