diff options
author | Chia-I Wu <[email protected]> | 2015-01-26 14:00:25 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2015-02-12 07:56:10 +0800 |
commit | 1d07055b5087bf7c0cca50b7b5a5635bfdd85885 (patch) | |
tree | b2bc5b96870ce6d238fcf64641bcf4d773e85595 /src/gallium/drivers/ilo/ilo_render_gen.h | |
parent | 69ad5fd4ce33aeab73d9eb546072d77e73e3a730 (diff) |
ilo: clean up sample patterns
Use signed int for sample positions and add helpers to access them. Call them
patterns instead of positions.
Diffstat (limited to 'src/gallium/drivers/ilo/ilo_render_gen.h')
-rw-r--r-- | src/gallium/drivers/ilo/ilo_render_gen.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/ilo/ilo_render_gen.h b/src/gallium/drivers/ilo/ilo_render_gen.h index 28d5030b9ae..fef01f43591 100644 --- a/src/gallium/drivers/ilo/ilo_render_gen.h +++ b/src/gallium/drivers/ilo/ilo_render_gen.h @@ -47,9 +47,9 @@ struct ilo_render { struct intel_bo *workaround_bo; - uint32_t packed_sample_position_1x; - uint32_t packed_sample_position_4x; - uint32_t packed_sample_position_8x[2]; + uint32_t sample_pattern_1x; + uint32_t sample_pattern_4x; + uint32_t sample_pattern_8x[2]; bool hw_ctx_changed; |