diff options
author | George Kyriazis <[email protected]> | 2018-03-15 13:43:08 -0500 |
---|---|---|
committer | George Kyriazis <[email protected]> | 2018-04-18 10:51:38 -0500 |
commit | f52a501716a0a57c2fbae830b2a0e97de146b4c2 (patch) | |
tree | 43130876500646eccd4e98d91e236a4b7bbfa560 /src/gallium/drivers | |
parent | 093c1aee88dd61289cdeabffb402a29ae30d6b24 (diff) |
swr/rast: Code cleanup
Removing some code that doesn't seem to do anything meaningful.
Reviewed-by: Bruce Cherniak <[email protected]>
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/swr/rasterizer/jitter/fetch_jit.cpp | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/gallium/drivers/swr/rasterizer/jitter/fetch_jit.cpp b/src/gallium/drivers/swr/rasterizer/jitter/fetch_jit.cpp index 5c8d81332df..5971a52db7e 100644 --- a/src/gallium/drivers/swr/rasterizer/jitter/fetch_jit.cpp +++ b/src/gallium/drivers/swr/rasterizer/jitter/fetch_jit.cpp @@ -156,14 +156,7 @@ Function* FetchJit::Create(const FETCH_COMPILE_STATE& fetchState) mpFetchInfo->setName("fetchInfo"); Value* pVtxOut = &*argitr; pVtxOut->setName("vtxOutput"); - // this is just shorthand to tell LLVM to get a pointer to the base address of simdvertex - // index 0(just the pointer to the simdvertex structure - // index 1(which element of the simdvertex structure to offset to(in this case 0) - // so the indices being i32's doesn't matter - // TODO: generated this GEP with a VECTOR structure type so this makes sense - std::vector<Value*> vtxInputIndices(2, C(0)); - // GEP - pVtxOut = GEP(pVtxOut, C(0)); + #if USE_SIMD16_SHADERS #if 0// USE_SIMD16_BUILDER pVtxOut = BITCAST(pVtxOut, PointerType::get(VectorType::get(mFP32Ty, mVWidth16), 0)); |