From c39a02bff16d860f6e620ccde9df325a1557d13f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sat, 19 Apr 2025 11:51:47 +0200 Subject: [PATCH] DebugTools: document why certain textureSubImage() tests aren't present. --- src/Magnum/DebugTools/Test/TextureImageGLTest.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Magnum/DebugTools/Test/TextureImageGLTest.cpp b/src/Magnum/DebugTools/Test/TextureImageGLTest.cpp index e53ba0662..df16385b3 100644 --- a/src/Magnum/DebugTools/Test/TextureImageGLTest.cpp +++ b/src/Magnum/DebugTools/Test/TextureImageGLTest.cpp @@ -69,6 +69,10 @@ struct TextureImageGLTest: GL::OpenGLTester { void subImageCubeBuffer(); void subImageCubeBufferNotReadable(); #endif + /* Unlike Texture2D the CubeMapTexture overload has no codepath to + reinterpret float formats as integer, so no *Generic() test (that + verifies correct detection for generic formats as well) needs to + exist */ #ifndef MAGNUM_TARGET_GLES2 void subImage2DUInt();