Fix uninitialized shiftAll*Bindings in Compiler::Options

This commit is contained in:
Minmin Gong 2020-08-09 00:29:18 -07:00
Родитель 557f5396ea
Коммит 513d990e79
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -154,10 +154,10 @@ namespace ShaderConductor
int optimizationLevel = 3; // 0 to 3, no optimization to most optimization
ShaderModel shaderModel = {6, 0};
int shiftAllTexturesBindings;
int shiftAllSamplersBindings;
int shiftAllCBuffersBindings;
int shiftAllUABuffersBindings;
int shiftAllTexturesBindings = 0;
int shiftAllSamplersBindings = 0;
int shiftAllCBuffersBindings = 0;
int shiftAllUABuffersBindings = 0;
};
struct TargetDesc