mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-24 16:48:18 -05:00
Fixed Clang warnings.
This commit is contained in:
parent
5a0d48c77f
commit
ea38983f8d
1 changed files with 8 additions and 8 deletions
|
@ -123,15 +123,15 @@ namespace Forsyth
|
|||
}
|
||||
bool s_vertexScoresComputed = ComputeVertexScores();
|
||||
|
||||
inline float FindVertexCacheScore(uint cachePosition, uint maxSizeVertexCache)
|
||||
{
|
||||
return s_vertexCacheScores[maxSizeVertexCache][cachePosition];
|
||||
}
|
||||
// inline float FindVertexCacheScore(uint cachePosition, uint maxSizeVertexCache)
|
||||
// {
|
||||
// return s_vertexCacheScores[maxSizeVertexCache][cachePosition];
|
||||
// }
|
||||
|
||||
inline float FindVertexValenceScore(uint numActiveTris)
|
||||
{
|
||||
return s_vertexValenceScores[numActiveTris];
|
||||
}
|
||||
// inline float FindVertexValenceScore(uint numActiveTris)
|
||||
// {
|
||||
// return s_vertexValenceScores[numActiveTris];
|
||||
// }
|
||||
|
||||
float FindVertexScore(uint numActiveFaces, uint cachePosition, uint vertexCacheSize)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue