From 0da2a59e4d089e670a6f5ea00d3ea5a2800cd554 Mon Sep 17 00:00:00 2001 From: Swung0x48 Date: Fri, 22 Aug 2025 17:35:38 +0800 Subject: [PATCH] [Test] (MG_Test/ProgramTest/UniformMatrixFunctions): get rid of junk --- MobileGL/MG_Test/Program/ProgramTest.cpp | 9 --------- 1 file changed, 9 deletions(-) diff --git a/MobileGL/MG_Test/Program/ProgramTest.cpp b/MobileGL/MG_Test/Program/ProgramTest.cpp index 9cf5bf89..abd62c5c 100644 --- a/MobileGL/MG_Test/Program/ProgramTest.cpp +++ b/MobileGL/MG_Test/Program/ProgramTest.cpp @@ -243,15 +243,6 @@ TEST_F(ProgramTest, UniformMatrixFunctions) { // Test with transpose = GL_TRUE UniformMatrix4fv(locProjMat, 1, GL_TRUE, nonIdentityMatrix); - - // Test UniformMatrix3fv with a 3x3 matrix - // We would need a 3x3 uniform in the shader for this test - - // Test UniformMatrix2fv with a 2x2 matrix - // We would need a 2x2 uniform in the shader for this test - - // Test with multiple matrices (count > 1) - // For this test, we would need uniforms that are arrays of matrices } TEST_F(ProgramTest, UniformMatrixTranspose) {