This commit is contained in:
aliPMPAINT 2021-02-28 14:27:50 +03:30 committed by GitHub
parent 2e923380f1
commit 042fd163f1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -42,7 +42,7 @@ TEST(TestShaderResources, TestNoMaxLight)
TEST(TestShaderResources, TestSmallComputeWorkGroupSizeX)
{
TBuiltInResource smallComputeWorkGroupSizeXResources = kp::defaultResource;
noMaxLightResources.maxComputeWorkGroupSizeX=0;
smallComputeWorkGroupSizeXResources.maxComputeWorkGroupSizeX=0;
ASSERT_THROW(compileShaderWithGivenResources(shaderString, smallComputeWorkGroupSizeXResources), std::runtime_error);
}