diff options
author | Tim Rowley <[email protected]> | 2017-11-08 14:07:33 -0600 |
---|---|---|
committer | Tim Rowley <[email protected]> | 2017-11-20 13:51:01 -0600 |
commit | 2e244c7168a1130a18c8d8a901161db9b6cbaac3 (patch) | |
tree | b98b5db0ce8b9b335237ab81ea8b211490c06588 /src/gallium/drivers/swr/swr_shader.cpp | |
parent | 44025def06a8b8d1c019f611079a003964ea7511 (diff) |
swr/rast: Simplify GATHER* jit builder api
General cleanup, and prep work for possibly moving to llvm masked
gather intrinsic.
Reviewed-by: Bruce Cherniak <[email protected]>
Diffstat (limited to 'src/gallium/drivers/swr/swr_shader.cpp')
-rw-r--r-- | src/gallium/drivers/swr/swr_shader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/swr/swr_shader.cpp b/src/gallium/drivers/swr/swr_shader.cpp index 732e08dae7b..599dc43698a 100644 --- a/src/gallium/drivers/swr/swr_shader.cpp +++ b/src/gallium/drivers/swr/swr_shader.cpp @@ -1238,7 +1238,7 @@ BuilderSWR::CompileFS(struct swr_context *ctx, swr_jit_fs_key &key) // peform a gather to grab stipple words for each lane Value *vStipple = GATHERDD(VUNDEF_I(), stipplePtr, vYstipple, - VIMMED1(0xffffffff), C((char)4)); + VIMMED1(0xffffffff), 4); // create a mask with one bit corresponding to the x stipple // and AND it with the pattern, to see if we have a bit |