summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/nouveau/nouveau_statebuf.h
diff options
context:
space:
mode:
authorIlia Mirkin <[email protected]>2015-10-31 19:54:38 -0400
committerIlia Mirkin <[email protected]>2015-10-31 19:58:14 -0400
commit67635a0a713e54939f1f72ba8db2b3099988a925 (patch)
treeae97f50d978c0fcf3102f97503fa234ecf895bbe /src/gallium/drivers/nouveau/nouveau_statebuf.h
parent0ef8c5cb96f6b1fea7c18c25fbff2adb6d7d0736 (diff)
nouveau: get rid of tabs
Signed-off-by: Ilia Mirkin <[email protected]>
Diffstat (limited to 'src/gallium/drivers/nouveau/nouveau_statebuf.h')
-rw-r--r--src/gallium/drivers/nouveau/nouveau_statebuf.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/nouveau/nouveau_statebuf.h b/src/gallium/drivers/nouveau/nouveau_statebuf.h
index f38014091ba..da5d7972d9c 100644
--- a/src/gallium/drivers/nouveau/nouveau_statebuf.h
+++ b/src/gallium/drivers/nouveau/nouveau_statebuf.h
@@ -6,9 +6,9 @@
struct nouveau_statebuf_builder
{
- uint32_t* p;
+ uint32_t* p;
#ifdef DEBUG
- uint32_t* pend;
+ uint32_t* pend;
#endif
};
@@ -22,7 +22,7 @@ struct nouveau_statebuf_builder
static inline uint32_t sb_header(unsigned subc, unsigned mthd, unsigned size)
{
- return (size << 18) | (subc << 13) | mthd;
+ return (size << 18) | (subc << 13) | mthd;
}
#define sb_method(sb, v, n) sb_data(sb, sb_header(SUBC_3D(v), n));