Merge pull request #2886 from greg-lunarg/i2875
Fix sameElementShape test of sampler
This commit is contained in:
commit
b7ba87bcfe
1 changed files with 1 additions and 1 deletions
|
|
@ -2703,7 +2703,7 @@ public:
|
||||||
*lpidx = -1;
|
*lpidx = -1;
|
||||||
*rpidx = -1;
|
*rpidx = -1;
|
||||||
}
|
}
|
||||||
return sampler == right.sampler &&
|
return ((basicType != EbtSampler && right.basicType != EbtSampler) || sampler == right.sampler) &&
|
||||||
vectorSize == right.vectorSize &&
|
vectorSize == right.vectorSize &&
|
||||||
matrixCols == right.matrixCols &&
|
matrixCols == right.matrixCols &&
|
||||||
matrixRows == right.matrixRows &&
|
matrixRows == right.matrixRows &&
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue