From 0b1a0ad1a85e71294ca9238a5cc705403927376a Mon Sep 17 00:00:00 2001 From: Bret Curtis Date: Wed, 14 Jun 2023 22:31:08 +0200 Subject: [PATCH] only 4 deep --- components/fx/parse_constants.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/fx/parse_constants.hpp b/components/fx/parse_constants.hpp index fc68e4ea77..9be54ed3a7 100644 --- a/components/fx/parse_constants.hpp +++ b/components/fx/parse_constants.hpp @@ -82,7 +82,7 @@ namespace fx { "s3tc_dxt1a", osg::Texture::USE_S3TC_DXT1a_COMPRESSION }, } }; - constexpr std::array, 6> WrapMode = { { + constexpr std::array, 4> WrapMode = { { { "clamp_to_edge", osg::Texture::CLAMP_TO_EDGE }, { "clamp_to_border", osg::Texture::CLAMP_TO_BORDER }, { "repeat", osg::Texture::REPEAT },