diff options
author | Jason Ekstrand <[email protected]> | 2018-07-23 08:02:46 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2018-08-11 10:58:12 -0500 |
commit | a9f7bcfdf90d8302e9ed27601b2b7001b9940740 (patch) | |
tree | 5ff09495bf69e5b354ed98c897629f908fec3fde /src/intel/common | |
parent | 8a8713888504804aad774d8624444a59c43f5ca7 (diff) |
intel: Switch the order of the 2x MSAA sample positions
The Vulkan 1.1.82 spec flipped the order to better match D3D.
Cc: [email protected]
Reviewed-by: Iago Toral Quiroga <[email protected]>
Reviewed-by: Anuj Phogat <[email protected]>
Diffstat (limited to 'src/intel/common')
-rw-r--r-- | src/intel/common/gen_sample_positions.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/intel/common/gen_sample_positions.h b/src/intel/common/gen_sample_positions.h index f0ce95dd1fb..da48dcb5ed0 100644 --- a/src/intel/common/gen_sample_positions.h +++ b/src/intel/common/gen_sample_positions.h @@ -42,10 +42,10 @@ prefix##0YOffset = 0.5; * c 1 */ #define GEN_SAMPLE_POS_2X(prefix) \ -prefix##0XOffset = 0.25; \ -prefix##0YOffset = 0.25; \ -prefix##1XOffset = 0.75; \ -prefix##1YOffset = 0.75; +prefix##0XOffset = 0.75; \ +prefix##0YOffset = 0.75; \ +prefix##1XOffset = 0.25; \ +prefix##1YOffset = 0.25; /** * Sample positions: |