1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-03-13 19:29:14 +01:00

[d3d9] Fix warnings with query caching

This commit is contained in:
Joshua Ashton 2021-01-08 13:49:38 +00:00
parent 83f6400a07
commit 0eec95843f
No known key found for this signature in database
GPG Key ID: C85A08669126BE8D

View File

@ -239,6 +239,9 @@ namespace dxvk {
m_dataCache.VertexStats.NumRenderedTriangles = queryData[0].statistic.iaPrimitives;
m_dataCache.VertexStats.NumExtraClippingTriangles = queryData[0].statistic.clipPrimitives;
break;
default:
break;
}
if (likely(pData && dwSize))
@ -332,4 +335,4 @@ namespace dxvk {
}
}
}
}