Fix warning about losing information, use size_t instead of int
This commit is contained in:
parent
6e620c4674
commit
3cb57d3731
1 changed files with 1 additions and 1 deletions
|
|
@ -2125,7 +2125,7 @@ void TGlslangToSpvTraverser::updateMemberOffset(const glslang::TType& /*structTy
|
|||
bool TGlslangToSpvTraverser::isShaderEntrypoint(const glslang::TIntermAggregate* node)
|
||||
{
|
||||
// have to ignore mangling and just look at the base name
|
||||
int firstOpen = node->getName().find('(');
|
||||
size_t firstOpen = node->getName().find('(');
|
||||
return node->getName().compare(0, firstOpen, glslangIntermediate->getEntryPoint().c_str()) == 0;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue