Home
last modified time | relevance | path

Searched refs:NINE_MAX_SAMPLERS_PS (Results 1 – 4 of 4) sorted by relevance

/external/mesa3d/src/gallium/frontends/nine/
Dnine_pipe.c215 (idx < NINE_MAX_SAMPLERS_PS || idx >= NINE_SAMPLER_VS(0)) && in nine_convert_sampler_state()
251 if (idx < NINE_MAX_SAMPLERS_PS) in nine_convert_sampler_state()
Ddevice9.c2559 user_assert(Stage < NINE_MAX_SAMPLERS_PS || in NineDevice9_GetTexture()
2566 Stage = Stage - D3DDMAPSAMPLER + NINE_MAX_SAMPLERS_PS; in NineDevice9_GetTexture()
2586 user_assert(Stage < NINE_MAX_SAMPLERS_PS || in NineDevice9_SetTexture()
2594 Stage = Stage - D3DDMAPSAMPLER + NINE_MAX_SAMPLERS_PS; in NineDevice9_SetTexture()
2664 user_assert(Sampler < NINE_MAX_SAMPLERS_PS || in NineDevice9_GetSamplerState()
2670 Sampler = Sampler - D3DDMAPSAMPLER + NINE_MAX_SAMPLERS_PS; in NineDevice9_GetSamplerState()
2687 user_assert(Sampler < NINE_MAX_SAMPLERS_PS || in NineDevice9_SetSamplerState()
2693 Sampler = Sampler - D3DDMAPSAMPLER + NINE_MAX_SAMPLERS_PS; in NineDevice9_SetSamplerState()
Dnine_state.h132 #define NINE_MAX_SAMPLERS_PS 16 macro
Dnine_state.c975 for (num_textures = 0, i = 0; i < NINE_MAX_SAMPLERS_PS; ++i) { in update_textures_and_samplers()