Updated local clang-format.

This commit is contained in:
Dr. Chat
2016-03-02 21:16:38 -06:00
parent 740c70f270
commit 38094ac819
2 changed files with 6 additions and 8 deletions

View File

@@ -672,11 +672,11 @@ void ShaderTranslator::TranslateExecInstructions(
static_cast<FetchOpcode>(ucode_dwords_[instr_offset * 3] & 0x1F);
if (fetch_opcode == FetchOpcode::kVertexFetch) {
auto& op = *reinterpret_cast<const VertexFetchInstruction*>(
ucode_dwords_ + instr_offset * 3);
ucode_dwords_ + instr_offset * 3);
TranslateVertexFetchInstruction(op);
} else {
auto& op = *reinterpret_cast<const TextureFetchInstruction*>(
ucode_dwords_ + instr_offset * 3);
ucode_dwords_ + instr_offset * 3);
TranslateTextureFetchInstruction(op);
}
} else {