Home
last modified time | relevance | path

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

/external/swiftshader/src/D3D9/
DDirect3D9.cpp66 if(ps == 0) pixelShaderVersionX = D3DPS_VERSION(0, 0); in Direct3D9()
67 else if(ps <= 11) pixelShaderVersionX = D3DPS_VERSION(1, 1); in Direct3D9()
68 else if(ps <= 12) pixelShaderVersionX = D3DPS_VERSION(1, 2); in Direct3D9()
69 else if(ps <= 13) pixelShaderVersionX = D3DPS_VERSION(1, 3); in Direct3D9()
70 else if(ps <= 14) pixelShaderVersionX = D3DPS_VERSION(1, 4); in Direct3D9()
71 else if(ps <= 20) pixelShaderVersionX = D3DPS_VERSION(2, 0); in Direct3D9()
72 else if(ps <= 21) pixelShaderVersionX = D3DPS_VERSION(2, 1); in Direct3D9()
73 else pixelShaderVersionX = D3DPS_VERSION(3, 0); in Direct3D9()
248 …if(checkFormat == D3DFMT_INST && pixelShaderVersionX >= D3DPS_VERSION(2, 0) && pixelShaderVersionX in CheckDeviceFormat()
1208 unsigned int pixelShaderVersion = pixelShaderVersionX; in GetDeviceCaps()
DCapabilities.hpp453 extern unsigned int pixelShaderVersionX;
DCapabilities.cpp403 unsigned int pixelShaderVersionX = D3DPS_VERSION(3, 0); variable
DDirect3DDevice9.cpp182 instancingEnabled = pixelShaderVersionX >= D3DPS_VERSION(3, 0); in Direct3DDevice9()
699 if(!sw::PixelShader::validate(function) || function[0] > pixelShaderVersionX) in CreatePixelShader()
3629 …if(value == D3DFMT_INST && pixelShaderVersionX >= D3DPS_VERSION(2, 0)) // ATI hack to enable ins… in SetRenderState()