wined3d: Print a FIXME in tex_coordindex() when NV_TEXGEN_REFLECTION isn't supported.

This commit is contained in:
Henri Verbeet 2009-03-25 10:12:26 +01:00 committed by Alexandre Julliard
parent f63313fe3e
commit 61cd872fa7
1 changed files with 6 additions and 0 deletions

View File

@ -3161,8 +3161,11 @@ static void tex_coordindex(DWORD state, IWineD3DStateBlockImpl *stateblock, Wine
break;
case WINED3DTSS_TCI_CAMERASPACENORMAL:
/* Note that NV_TEXGEN_REFLECTION support is implied when
* ARB_TEXTURE_CUBE_MAP is supported */
if (!GL_SUPPORT(NV_TEXGEN_REFLECTION))
{
FIXME("WINED3DTSS_TCI_CAMERASPACENORMAL not supported.\n");
break;
}
@ -3193,8 +3196,11 @@ static void tex_coordindex(DWORD state, IWineD3DStateBlockImpl *stateblock, Wine
break;
case WINED3DTSS_TCI_CAMERASPACEREFLECTIONVECTOR:
/* Note that NV_TEXGEN_REFLECTION support is implied when
* ARB_TEXTURE_CUBE_MAP is supported */
if (!GL_SUPPORT(NV_TEXGEN_REFLECTION))
{
FIXME("WINED3DTSS_TCI_CAMERASPACEREFLECTIONVECTOR not supported.\n");
break;
}