From 68e01d2bd9f17f7b26585cc09f9b630d9c8e0d43 Mon Sep 17 00:00:00 2001 From: Seth Alves Date: Sun, 10 May 2015 17:03:42 -0700 Subject: [PATCH] quiet compiler --- libraries/gpu/src/gpu/Texture.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libraries/gpu/src/gpu/Texture.h b/libraries/gpu/src/gpu/Texture.h index 19add9a47e..1cd9d0b29b 100755 --- a/libraries/gpu/src/gpu/Texture.h +++ b/libraries/gpu/src/gpu/Texture.h @@ -56,12 +56,12 @@ public: glm::vec4 _borderColor{ 1.0f }; uint32 _maxAnisotropy = 16; + uint8 _filter = FILTER_MIN_MAG_POINT; + uint8 _comparisonFunc = ALWAYS; + uint8 _wrapModeU = WRAP_REPEAT; uint8 _wrapModeV = WRAP_REPEAT; uint8 _wrapModeW = WRAP_REPEAT; - - uint8 _filter = FILTER_MIN_MAG_POINT; - uint8 _comparisonFunc = ALWAYS; uint8 _mipOffset = 0; uint8 _minMip = 0;