Unverified Commit 816bc444 by John Kessenich Committed by GitHub

Merge pull request #1545 from dj2/warnings

Fixup unused parameter warnings
parents 086febc4 70f13b2e
...@@ -208,7 +208,7 @@ void Builder::postProcess(const Instruction& inst) ...@@ -208,7 +208,7 @@ void Builder::postProcess(const Instruction& inst)
} }
// Called for each instruction in a reachable block. // Called for each instruction in a reachable block.
void Builder::postProcessReachable(const Instruction& inst) void Builder::postProcessReachable(const Instruction&)
{ {
// did have code here, but questionable to do so without deleting the instructions // did have code here, but questionable to do so without deleting the instructions
} }
......
...@@ -114,8 +114,8 @@ void SpirvToolsValidate(const glslang::TIntermediate& intermediate, std::vector< ...@@ -114,8 +114,8 @@ void SpirvToolsValidate(const glslang::TIntermediate& intermediate, std::vector<
// Apply the SPIRV-Tools optimizer to generated SPIR-V, for the purpose of // Apply the SPIRV-Tools optimizer to generated SPIR-V, for the purpose of
// legalizing HLSL SPIR-V. // legalizing HLSL SPIR-V.
void SpirvToolsLegalize(const glslang::TIntermediate& intermediate, std::vector<unsigned int>& spirv, void SpirvToolsLegalize(const glslang::TIntermediate&, std::vector<unsigned int>& spirv,
spv::SpvBuildLogger* logger, const SpvOptions* options) spv::SpvBuildLogger*, const SpvOptions* options)
{ {
spv_target_env target_env = SPV_ENV_UNIVERSAL_1_2; spv_target_env target_env = SPV_ENV_UNIVERSAL_1_2;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment