mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
[d3d9] Report vertex texture filtering support only for SM3
This commit is contained in:
parent
5b21286377
commit
279ddc4ff4
1 changed files with 14 additions and 1 deletions
|
@ -650,7 +650,20 @@ namespace dxvk {
|
||||||
pCaps->PS20Caps.StaticFlowControlDepth = options.shaderModel >= 2 ? D3DPS20_MAX_STATICFLOWCONTROLDEPTH : 0;
|
pCaps->PS20Caps.StaticFlowControlDepth = options.shaderModel >= 2 ? D3DPS20_MAX_STATICFLOWCONTROLDEPTH : 0;
|
||||||
pCaps->PS20Caps.NumInstructionSlots = options.shaderModel >= 2 ? D3DPS20_MAX_NUMINSTRUCTIONSLOTS : 0;
|
pCaps->PS20Caps.NumInstructionSlots = options.shaderModel >= 2 ? D3DPS20_MAX_NUMINSTRUCTIONSLOTS : 0;
|
||||||
|
|
||||||
pCaps->VertexTextureFilterCaps = pCaps->TextureFilterCaps;
|
// Vertex texture samplers are only available as part of SM3, the caps are 0 otherwise.
|
||||||
|
pCaps->VertexTextureFilterCaps = options.shaderModel == 3 ? D3DPTFILTERCAPS_MINFPOINT
|
||||||
|
| D3DPTFILTERCAPS_MINFLINEAR
|
||||||
|
/* | D3DPTFILTERCAPS_MINFANISOTROPIC */
|
||||||
|
/* | D3DPTFILTERCAPS_MINFPYRAMIDALQUAD */
|
||||||
|
/* | D3DPTFILTERCAPS_MINFGAUSSIANQUAD */
|
||||||
|
/* | D3DPTFILTERCAPS_MIPFPOINT */
|
||||||
|
/* | D3DPTFILTERCAPS_MIPFLINEAR */
|
||||||
|
/* | D3DPTFILTERCAPS_CONVOLUTIONMONO */
|
||||||
|
| D3DPTFILTERCAPS_MAGFPOINT
|
||||||
|
| D3DPTFILTERCAPS_MAGFLINEAR
|
||||||
|
/* | D3DPTFILTERCAPS_MAGFANISOTROPIC */
|
||||||
|
/* | D3DPTFILTERCAPS_MAGFPYRAMIDALQUAD */
|
||||||
|
/* | D3DPTFILTERCAPS_MAGFGAUSSIANQUAD */ : 0;
|
||||||
|
|
||||||
pCaps->MaxVShaderInstructionsExecuted = options.shaderModel >= 2 ? 4294967295 : 0;
|
pCaps->MaxVShaderInstructionsExecuted = options.shaderModel >= 2 ? 4294967295 : 0;
|
||||||
pCaps->MaxPShaderInstructionsExecuted = options.shaderModel >= 2 ? 4294967295 : 0;
|
pCaps->MaxPShaderInstructionsExecuted = options.shaderModel >= 2 ? 4294967295 : 0;
|
||||||
|
|
Loading…
Add table
Reference in a new issue