diff options
author | Tim Rowley <[email protected]> | 2017-01-05 07:29:22 -0600 |
---|---|---|
committer | Tim Rowley <[email protected]> | 2017-01-05 14:10:36 -0600 |
commit | 33fa4c99f7fa68fd8c33c75c4fe66c4cca76779f (patch) | |
tree | 5662d35a22a18cd4c068c9b42d478c69d0e219bd /src/gallium/drivers/swr/rasterizer/jitter/builder_misc.h | |
parent | b6670157d742548e7f2430614786c733eb4c20e9 (diff) |
swr: [rasterizer core/common/jitter] gl_double support
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=99214
Reviewed-by: Bruce Cherniak <[email protected]>
Diffstat (limited to 'src/gallium/drivers/swr/rasterizer/jitter/builder_misc.h')
-rw-r--r-- | src/gallium/drivers/swr/rasterizer/jitter/builder_misc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/swr/rasterizer/jitter/builder_misc.h b/src/gallium/drivers/swr/rasterizer/jitter/builder_misc.h index 86f7bf21a6b..67f938e192e 100644 --- a/src/gallium/drivers/swr/rasterizer/jitter/builder_misc.h +++ b/src/gallium/drivers/swr/rasterizer/jitter/builder_misc.h @@ -113,6 +113,8 @@ Value *GATHERDD(Value* src, Value* pBase, Value* indices, Value* mask, Value* sc void GATHER4DD(const SWR_FORMAT_INFO &info, Value* pSrcBase, Value* byteOffsets, Value* mask, Value* vGatherComponents[], bool bPackedOutput); +Value *GATHERPD(Value* src, Value* pBase, Value* indices, Value* mask, Value* scale); + void SCATTERPS(Value* pDst, Value* vSrc, Value* vOffsets, Value* vMask); void Shuffle8bpcGather4(const SWR_FORMAT_INFO &info, Value* vGatherInput, Value* vGatherOutput[], bool bPackedOutput); |