Roll spirv-cross bd7c47a0 -> 3ab17000

This commit is contained in:
Corentin Wallez
2017-06-05 16:27:09 -04:00
committed by Corentin Wallez
parent 72725eebf9
commit fbab31bada
2 changed files with 2 additions and 5 deletions

View File

@@ -1065,10 +1065,7 @@ namespace metal {
compiler = new spirv_cross::CompilerMSL(builder->AcquireSpirv());
ExtractSpirvInfo(*compiler);
spirv_cross::MSLConfiguration mslConfig;
mslConfig.flip_vert_y = false;
mslConfig.flip_frag_y = false;
std::string msl = compiler->compile(mslConfig);
std::string msl = compiler->compile();
NSString* mslSource = [NSString stringWithFormat:@"%s", msl.c_str()];
NSError *error = nil;