diff options
author | Brian Paul <[email protected]> | 2018-01-25 11:36:53 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2018-01-25 11:56:33 -0700 |
commit | 94610758a3543f0668815b3ca3e3b3d88b207001 (patch) | |
tree | 957a6e196ceb6cb97fe65e4d6ec8a145f3800f1e | |
parent | 6aeef5464497a2dfd2eb63c7e4aa3349c7794eae (diff) |
svga: s/Bool/SVGA3dBool/ in SVGA3dDevCapResult
And fix whitespace. To sync up with in-house code.
Reviewed-by: Charmaine Lee <[email protected]>
-rw-r--r-- | src/gallium/drivers/svga/include/svga3d_devcaps.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/svga/include/svga3d_devcaps.h b/src/gallium/drivers/svga/include/svga3d_devcaps.h index ade210b4172..4e2f6bf4ba5 100644 --- a/src/gallium/drivers/svga/include/svga3d_devcaps.h +++ b/src/gallium/drivers/svga/include/svga3d_devcaps.h @@ -448,10 +448,10 @@ typedef enum { SVGADX_DXFMT_MULTISAMPLE_8 ) typedef union { - Bool b; + SVGA3dBool b; uint32 u; - int32 i; - float f; + int32 i; + float f; } SVGA3dDevCapResult; #endif /* _SVGA3D_DEVCAPS_H_ */ |