File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -135,9 +135,9 @@ class ColorSpaceTestSampleApp final : public examples::SimpleWindowedApplication
135
135
.stageFlags = IShader::ESS_FRAGMENT,
136
136
.count = 1 ,
137
137
#if defined(COMBINED_IMMUTABLE)
138
- .samplers = &defaultSampler
138
+ .immutableSamplers = &defaultSampler
139
139
#else
140
- .samplers = nullptr
140
+ .immutableSamplers = nullptr
141
141
#endif
142
142
}
143
143
};
@@ -148,7 +148,7 @@ class ColorSpaceTestSampleApp final : public examples::SimpleWindowedApplication
148
148
.createFlags = IGPUDescriptorSetLayout::SBinding::E_CREATE_FLAGS::ECF_NONE,
149
149
.stageFlags = IShader::ESS_FRAGMENT,
150
150
.count = 1 ,
151
- .samplers = nullptr
151
+ .immutableSamplers = nullptr
152
152
},
153
153
{
154
154
.binding = 1 ,
@@ -157,9 +157,9 @@ class ColorSpaceTestSampleApp final : public examples::SimpleWindowedApplication
157
157
.stageFlags = IShader::ESS_FRAGMENT,
158
158
.count = 1 ,
159
159
#if defined(SEPARATED_IMMUTABLE)
160
- .samplers = &defaultSampler
160
+ .immutableSamplers = &defaultSampler
161
161
#else
162
- .samplers = nullptr
162
+ .immutableSamplers = nullptr
163
163
#endif
164
164
}
165
165
};
You can’t perform that action at this time.
0 commit comments