summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/swr/rasterizer/common
diff options
context:
space:
mode:
authorTim Rowley <[email protected]>2017-07-20 13:48:28 -0500
committerTim Rowley <[email protected]>2017-08-02 11:39:33 -0500
commitf253798205a3ce7f577867a96ce487bf20e10909 (patch)
tree1d8fe47cf65ccb5c4b2509e6a92e7e0b3ee18452 /src/gallium/drivers/swr/rasterizer/common
parent030cfa8eed9a91fe5b5ae59670a3001ac0b0f339 (diff)
swr/rast: stop using MSFT types in platform independent code
Reviewed-by: Bruce Cherniak <[email protected]>
Diffstat (limited to 'src/gallium/drivers/swr/rasterizer/common')
-rw-r--r--src/gallium/drivers/swr/rasterizer/common/os.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/gallium/drivers/swr/rasterizer/common/os.h b/src/gallium/drivers/swr/rasterizer/common/os.h
index dc90fca7501..4ed6b88e454 100644
--- a/src/gallium/drivers/swr/rasterizer/common/os.h
+++ b/src/gallium/drivers/swr/rasterizer/common/os.h
@@ -220,12 +220,6 @@ void *AlignedMalloc(unsigned int size, unsigned int alignment)
return ret;
}
-inline
-unsigned char _bittest(const LONG *a, LONG b)
-{
- return ((*(unsigned *)(a) & (1 << b)) != 0);
-}
-
static inline
void AlignedFree(void* p)
{