Searched refs:foundInGLSLCode (Results 1 – 4 of 4) sorted by relevance
87 ASSERT_TRUE(foundInGLSLCode("float angle_frm(in float")); in TEST_F()88 ASSERT_TRUE(foundInGLSLCode("vec2 angle_frm(in vec2")); in TEST_F()89 ASSERT_TRUE(foundInGLSLCode("vec3 angle_frm(in vec3")); in TEST_F()90 ASSERT_TRUE(foundInGLSLCode("vec4 angle_frm(in vec4")); in TEST_F()91 ASSERT_TRUE(foundInGLSLCode("mat2 angle_frm(in mat2")); in TEST_F()92 ASSERT_TRUE(foundInGLSLCode("mat3 angle_frm(in mat3")); in TEST_F()93 ASSERT_TRUE(foundInGLSLCode("mat4 angle_frm(in mat4")); in TEST_F()95 ASSERT_TRUE(foundInGLSLCode("float angle_frl(in float")); in TEST_F()96 ASSERT_TRUE(foundInGLSLCode("vec2 angle_frl(in vec2")); in TEST_F()97 ASSERT_TRUE(foundInGLSLCode("vec3 angle_frl(in vec3")); in TEST_F()[all …]
141 return foundInGLSLCode(str) && foundInESSLCode(str); in foundInAllGLSLCode()579 EXPECT_FALSE(foundInGLSLCode("GL_OVR_multiview")); in TEST_F()642 EXPECT_FALSE(foundInGLSLCode("#extension GL_NV_viewport_array2")); in TEST_F()658 EXPECT_FALSE(foundInGLSLCode("#extension GL_NV_viewport_array2")); in TEST_F()673 EXPECT_FALSE(foundInGLSLCode("#extension GL_NV_viewport_array2")); in TEST_F()677 EXPECT_TRUE(foundInGLSLCode("#extension GL_OVR_multiview")); in TEST_F()680 EXPECT_FALSE(foundInGLSLCode("#extension GL_OVR_multiview2")); in TEST_F()701 EXPECT_FALSE(foundInGLSLCode("#extension GL_NV_viewport_array2")); in TEST_F()764 EXPECT_FALSE(foundInGLSLCode("#extension GL_NV_viewport_array2")); in TEST_F()767 EXPECT_FALSE(foundInGLSLCode("#extension GL_OVR_multiview2")); in TEST_F()[all …]
144 return foundInGLSLCode(str) && foundInESSLCode(str); in foundInAllGLSLCode()563 EXPECT_FALSE(foundInGLSLCode("GL_OVR_multiview2")); in TEST_F()664 EXPECT_FALSE(foundInGLSLCode("#extension GL_NV_viewport_array2")); in TEST_F()680 EXPECT_FALSE(foundInGLSLCode("#extension GL_NV_viewport_array2")); in TEST_F()695 EXPECT_FALSE(foundInGLSLCode("#extension GL_NV_viewport_array2")); in TEST_F()699 EXPECT_TRUE(foundInGLSLCode("#extension GL_OVR_multiview2")); in TEST_F()720 EXPECT_FALSE(foundInGLSLCode("#extension GL_NV_viewport_array2")); in TEST_F()784 EXPECT_FALSE(foundInGLSLCode("#extension GL_NV_viewport_array2")); in TEST_F()787 EXPECT_FALSE(foundInGLSLCode("gl_ViewportIndex")); in TEST_F()
63 bool foundInGLSLCode(const char *stringToFind) const in foundInGLSLCode() function