mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-26 15:30:40 +02:00
swr: [rasterizer jitter] add mSimdInt1Ty
Reviewed-by: Bruce Cherniak <bruce.cherniak@intel.com>
This commit is contained in:
parent
4e1e0b3a32
commit
8e815ff72c
2 changed files with 2 additions and 0 deletions
|
|
@ -56,6 +56,7 @@ Builder::Builder(JitManager *pJitMgr)
|
|||
mInt64Ty = Type::getInt64Ty(pJitMgr->mContext);
|
||||
mV4FP32Ty = StructType::get(pJitMgr->mContext, std::vector<Type*>(4, mFP32Ty), false); // vector4 float type (represented as structure)
|
||||
mV4Int32Ty = StructType::get(pJitMgr->mContext, std::vector<Type*>(4, mInt32Ty), false); // vector4 int type
|
||||
mSimdInt1Ty = VectorType::get(mInt1Ty, mVWidth);
|
||||
mSimdInt16Ty = VectorType::get(mInt16Ty, mVWidth);
|
||||
mSimdInt32Ty = VectorType::get(mInt32Ty, mVWidth);
|
||||
mSimdInt64Ty = VectorType::get(mInt64Ty, mVWidth);
|
||||
|
|
|
|||
|
|
@ -61,6 +61,7 @@ struct Builder
|
|||
Type* mInt32PtrTy;
|
||||
Type* mSimdFP16Ty;
|
||||
Type* mSimdFP32Ty;
|
||||
Type* mSimdInt1Ty;
|
||||
Type* mSimdInt16Ty;
|
||||
Type* mSimdInt32Ty;
|
||||
Type* mSimdInt64Ty;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue