@@ -2308,7 +2308,8 @@ bool TGlslangToSpvTraverser::visitUnary(glslang::TVisit /* visit */, glslang::TI
2308
2308
2309
2309
// The result of operation is always stored, but conditionally the
2310
2310
// consumed result. The consumed result is always an r-value.
2311
- builder.accessChainStore (result);
2311
+ builder.accessChainStore (result,
2312
+ TranslateNonUniformDecoration (node->getOperand ()->getType ().getQualifier ()));
2312
2313
builder.clearAccessChain ();
2313
2314
if (node->getOp () == glslang::EOpPreIncrement ||
2314
2315
node->getOp () == glslang::EOpPreDecrement)
@@ -2384,6 +2385,7 @@ bool TGlslangToSpvTraverser::visitAggregate(glslang::TVisit visit, glslang::TInt
2384
2385
spv::Id invertedType = spv::NoType; // to use to override the natural type of the node
2385
2386
std::vector<spv::Builder::AccessChain> complexLvalues; // for holding swizzling l-values too complex for
2386
2387
// SPIR-V, for an out parameter
2388
+ std::vector<glslang::TQualifier> complexLValueQualifiers;
2387
2389
std::vector<spv::Id> temporaryLvalues; // temporaries to pass, as proxies for complexLValues
2388
2390
2389
2391
auto resultType = [&invertedType, &node, this ](){ return invertedType != spv::NoType ?
@@ -2627,6 +2629,10 @@ bool TGlslangToSpvTraverser::visitAggregate(glslang::TVisit visit, glslang::TInt
2627
2629
else
2628
2630
constructed = builder.createConstructor (precision, arguments, resultType ());
2629
2631
2632
+ if (node->getType ().getQualifier ().isNonUniform ()) {
2633
+ builder.addDecoration (constructed, spv::DecorationNonUniformEXT);
2634
+ }
2635
+
2630
2636
builder.clearAccessChain ();
2631
2637
builder.setAccessChainRValue (constructed);
2632
2638
@@ -3001,6 +3007,7 @@ bool TGlslangToSpvTraverser::visitAggregate(glslang::TVisit visit, glslang::TInt
3001
3007
// receive the result, and must later swizzle that into the original
3002
3008
// l-value.
3003
3009
complexLvalues.push_back (builder.getAccessChain ());
3010
+ complexLValueQualifiers.push_back (glslangOperands[arg]->getAsTyped ()->getType ().getQualifier ());
3004
3011
temporaryLvalues.push_back (builder.createVariable (
3005
3012
spv::NoPrecision, spv::StorageClassFunction,
3006
3013
builder.accessChainGetInferredType (), " swizzleTemp" ));
@@ -3105,7 +3112,7 @@ bool TGlslangToSpvTraverser::visitAggregate(glslang::TVisit visit, glslang::TInt
3105
3112
3106
3113
for (unsigned int i = 0 ; i < temporaryLvalues.size (); ++i) {
3107
3114
builder.setAccessChain (complexLvalues[i]);
3108
- builder.accessChainStore (builder.createLoad (temporaryLvalues[i], spv::NoPrecision));
3115
+ builder.accessChainStore (builder.createLoad (temporaryLvalues[i], spv::NoPrecision), TranslateNonUniformDecoration (complexLValueQualifiers[i]) );
3109
3116
}
3110
3117
}
3111
3118
@@ -4170,7 +4177,7 @@ void TGlslangToSpvTraverser::accessChainStore(const glslang::TType& type, spv::I
4170
4177
unsigned int alignment = builder.getAccessChain ().alignment ;
4171
4178
alignment |= type.getBufferReferenceAlignment ();
4172
4179
4173
- builder.accessChainStore (rvalue,
4180
+ builder.accessChainStore (rvalue, TranslateNonUniformDecoration (type. getQualifier ()),
4174
4181
spv::MemoryAccessMask (TranslateMemoryAccess (coherentFlags) &
4175
4182
~spv::MemoryAccessMakePointerVisibleKHRMask),
4176
4183
TranslateMemoryScope (coherentFlags), alignment);
@@ -4766,12 +4773,15 @@ spv::Id TGlslangToSpvTraverser::createImageTextureFunctionCall(glslang::TIntermO
4766
4773
4767
4774
const bool isUnsignedResult = node->getType ().getBasicType () == glslang::EbtUint;
4768
4775
4776
+ if (builder.isSampledImage (params.sampler ) &&
4777
+ ((cracked.query && node->getOp () != glslang::EOpTextureQueryLod) || cracked.fragMask || cracked.fetch )) {
4778
+ params.sampler = builder.createUnaryOp (spv::OpImage, builder.getImageType (params.sampler ), params.sampler );
4779
+ if (imageType.getQualifier ().isNonUniform ()) {
4780
+ builder.addDecoration (params.sampler , spv::DecorationNonUniformEXT);
4781
+ }
4782
+ }
4769
4783
// Check for queries
4770
4784
if (cracked.query ) {
4771
- // OpImageQueryLod works on a sampled image, for other queries the image has to be extracted first
4772
- if (node->getOp () != glslang::EOpTextureQueryLod && builder.isSampledImage (params.sampler ))
4773
- params.sampler = builder.createUnaryOp (spv::OpImage, builder.getImageType (params.sampler ), params.sampler );
4774
-
4775
4785
switch (node->getOp ()) {
4776
4786
case glslang::EOpImageQuerySize:
4777
4787
case glslang::EOpTextureQuerySize:
@@ -5025,10 +5035,6 @@ spv::Id TGlslangToSpvTraverser::createImageTextureFunctionCall(glslang::TIntermO
5025
5035
auto opIt = arguments.begin ();
5026
5036
std::vector<spv::Id> operands;
5027
5037
5028
- // Extract the image if necessary
5029
- if (builder.isSampledImage (params.sampler ))
5030
- params.sampler = builder.createUnaryOp (spv::OpImage, builder.getImageType (params.sampler ), params.sampler );
5031
-
5032
5038
operands.push_back (params.sampler );
5033
5039
++opIt;
5034
5040
@@ -5089,13 +5095,6 @@ spv::Id TGlslangToSpvTraverser::createImageTextureFunctionCall(glslang::TIntermO
5089
5095
bias = true ;
5090
5096
}
5091
5097
5092
- // See if the sampler param should really be just the SPV image part
5093
- if (cracked.fetch ) {
5094
- // a fetch needs to have the image extracted first
5095
- if (builder.isSampledImage (params.sampler ))
5096
- params.sampler = builder.createUnaryOp (spv::OpImage, builder.getImageType (params.sampler ), params.sampler );
5097
- }
5098
-
5099
5098
#ifndef GLSLANG_WEB
5100
5099
if (cracked.gather ) {
5101
5100
const auto & sourceExtensions = glslangIntermediate->getRequestedExtensions ();
@@ -5255,7 +5254,7 @@ spv::Id TGlslangToSpvTraverser::createImageTextureFunctionCall(glslang::TIntermO
5255
5254
5256
5255
builder.accessChainPush (builder.makeIntConstant (i), flags, 0 );
5257
5256
builder.accessChainStore (builder.createCompositeExtract (res, builder.getContainedTypeId (resType, i+1 ),
5258
- i+1 ));
5257
+ i+1 ), TranslateNonUniformDecoration (imageType. getQualifier ()) );
5259
5258
}
5260
5259
return builder.createCompositeExtract (res, resultType (), 0 );
5261
5260
}
0 commit comments