Merge pull request #226 from baldurk/warning-fixes
A couple of small warning fixes
This commit is contained in:
commit
d99524197f
@ -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;
|
||||
}
|
||||
|
||||
|
@ -999,9 +999,9 @@ public:
|
||||
qualifier.storage = EvqGlobal;
|
||||
}
|
||||
|
||||
void init(const TSourceLoc& loc, bool global = false)
|
||||
void init(const TSourceLoc& l, bool global = false)
|
||||
{
|
||||
initType(loc);
|
||||
initType(l);
|
||||
sampler.clear();
|
||||
initQualifiers(global);
|
||||
shaderQualifiers.init();
|
||||
|
Loading…
x
Reference in New Issue
Block a user