diff options
author | Chia-I Wu <[email protected]> | 2013-06-27 15:17:08 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2013-06-28 10:44:51 +0800 |
commit | 20c691b9368ece77c8dc22d6af0aedb9a21eccbc (patch) | |
tree | 310e8a6c1d5a99757fe125ee07e22fd906b44321 /src/gallium/drivers/ilo/ilo_3d.c | |
parent | cabc7b44c0fef2122ee001363e4d6e5cb6e66012 (diff) |
ilo: use shorter names for dirty flags
The new names match those of ilo_context's members respectively, and are
shorter.
Diffstat (limited to 'src/gallium/drivers/ilo/ilo_3d.c')
-rw-r--r-- | src/gallium/drivers/ilo/ilo_3d.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/ilo/ilo_3d.c b/src/gallium/drivers/ilo/ilo_3d.c index 65adcf26f7e..b8cb24f0f71 100644 --- a/src/gallium/drivers/ilo/ilo_3d.c +++ b/src/gallium/drivers/ilo/ilo_3d.c @@ -386,10 +386,10 @@ draw_vbo(struct ilo_3d *hw3d, const struct ilo_context *ilo, * happens in the middle of a batch buffer, we need to insert manual * flushes. */ - need_flush = (ilo->dirty & ILO_DIRTY_FRAMEBUFFER); + need_flush = (ilo->dirty & ILO_DIRTY_FB); /* same to SO target changes */ - need_flush |= (ilo->dirty & ILO_DIRTY_STREAM_OUTPUT_TARGETS); + need_flush |= (ilo->dirty & ILO_DIRTY_SO); } /* make sure there is enough room first */ |