Reorder initializer fields to match variable declaration order (or vice versa) for several class constructors.
This commit is contained in:
parent
844dd45db6
commit
5f316d9b17
6 changed files with 30 additions and 29 deletions
|
|
@ -58,14 +58,14 @@ HlslParseContext::HlslParseContext(TSymbolTable& symbolTable, TIntermediate& int
|
|||
TParseContextBase(symbolTable, interm, parsingBuiltins, version, profile, spvVersion, language, infoSink, forwardCompatible, messages),
|
||||
contextPragma(true, false),
|
||||
loopNestingLevel(0), annotationNestingLevel(0), structNestingLevel(0), controlFlowNestingLevel(0),
|
||||
inEntryPoint(false),
|
||||
postEntryPointReturn(false),
|
||||
limits(resources.limits),
|
||||
inEntryPoint(false),
|
||||
entryPointOutput(nullptr),
|
||||
nextInLocation(0), nextOutLocation(0),
|
||||
sourceEntryPointName(sourceEntryPointName),
|
||||
builtInIoIndex(nullptr),
|
||||
builtInIoBase(nullptr)
|
||||
builtInIoBase(nullptr),
|
||||
nextInLocation(0), nextOutLocation(0),
|
||||
sourceEntryPointName(sourceEntryPointName)
|
||||
{
|
||||
globalUniformDefaults.clear();
|
||||
globalUniformDefaults.layoutMatrix = ElmRowMajor;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue