diff options
-rw-r--r-- | src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp index 254629f907a..6f7f397609b 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp @@ -1316,7 +1316,7 @@ private: }; private: - const struct tgsi::Source *code; + const tgsi::Source *code; const struct nv50_ir_prog_info *info; struct { @@ -1955,13 +1955,13 @@ isResourceSpecial(const int r) } static inline bool -isResourceRaw(const struct tgsi::Source *code, const int r) +isResourceRaw(const tgsi::Source *code, const int r) { return isResourceSpecial(r) || code->resources[r].raw; } static inline nv50_ir::TexTarget -getResourceTarget(const struct tgsi::Source *code, int r) +getResourceTarget(const tgsi::Source *code, int r) { if (isResourceSpecial(r)) return nv50_ir::TEX_TARGET_BUFFER; |