Fixed variable shadowing.

This commit is contained in:
Branimir Karadžić
2015-04-04 19:45:45 -07:00
parent 1e8051fd00
commit efed576e75
3 changed files with 21 additions and 19 deletions

View File

@@ -35,6 +35,9 @@ project "shaderc"
buildoptions {
"-fno-strict-aliasing" -- glsl-optimizer has bugs if strict aliasing is used.
}
removebuildoptions {
"-Wshadow", -- glsl-optimizer is full of -Wshadow warnings ignore it.
}
configuration { "osx" }
links {
@@ -51,7 +54,7 @@ project "shaderc"
"$(DXSDK_DIR)/include",
}
configuration { "windows" }
links {
"d3dx9",