Home
last modified time | relevance | path

Searched +full:test +full:- +full:gl (Results 1 – 25 of 1041) sorted by relevance

12345678910>>...42

/third_party/vk-gl-cts/external/openglcts/modules/glesext/geometry_shader/
DesextcGeometryShaderLayeredFBO.cpp1 /*-------------------------------------------------------------------------
2 * OpenGL Conformance Test Suite
3 * -----------------------------
5 * Copyright (c) 2015-2016 The Khronos Group Inc.
11 * http://www.apache.org/licenses/LICENSE-2.0
22 */ /*-------------------------------------------------------------------*/
34 const unsigned int GeometryShaderLayeredFBOShared::n_shared_fbo_ids = 4; /* as per test spec */
35 const unsigned int GeometryShaderLayeredFBOShared::n_shared_to_ids = 7; /* as per test spec */
36 const glw::GLuint GeometryShaderLayeredFBOShared::shared_to_depth = 4; /* as per test spec */
37 const glw::GLuint GeometryShaderLayeredFBOShared::shared_to_height = 4; /* as per test spec */
[all …]
DesextcGeometryShaderAPI.cpp1 /*-------------------------------------------------------------------------
2 * OpenGL Conformance Test Suite
3 * -----------------------------
5 * Copyright (c) 2015-2016 The Khronos Group Inc.
11 * http://www.apache.org/licenses/LICENSE-2.0
22 */ /*-------------------------------------------------------------------*/
71 /* createShaderProgramv conformance test shaders */
93 " gl_Position = vec4(-1.0, -1.0, 0.0, 1.0);\n"
96 " gl_Position = vec4(-1.0, 1.0, 0.0, 1.0);\n"
99 " gl_Position = vec4(1.0, -1.0, 0.0, 1.0);\n"
[all …]
DesextcGeometryShaderLinking.cpp1 /*-------------------------------------------------------------------------
2 * OpenGL Conformance Test Suite
3 * -----------------------------
5 * Copyright (c) 2015-2016 The Khronos Group Inc.
11 * http://www.apache.org/licenses/LICENSE-2.0
22 */ /*-------------------------------------------------------------------*/
71 * @param context Test context
73 * @param name Test case's name
74 * @param description Test case's description
84 /** Deinitializes GLES objects created during the test. */
[all …]
DesextcGeometryShaderInput.cpp1 /*-------------------------------------------------------------------------
2 * OpenGL Conformance Test Suite
3 * -----------------------------
5 * Copyright (c) 2014-2016 The Khronos Group Inc.
11 * http://www.apache.org/licenses/LICENSE-2.0
22 */ /*-------------------------------------------------------------------*/
71 " gl_Position = vec4(-1, -1, 0, 1);\n"
76 " gl_Position = vec4(-1, 1, 0, 1);\n"
177 " // See test description for explanation of magic numbers\n"
182 " gl_Position = vec4(-7.0/8.0, 0, 0, 1);\n"
[all …]
DesextcGeometryShaderPrimitiveCounter.cpp1 /*-------------------------------------------------------------------------
2 * OpenGL Conformance Test Suite
3 * -----------------------------
5 * Copyright (c) 2014-2016 The Khronos Group Inc.
11 * http://www.apache.org/licenses/LICENSE-2.0
22 */ /*-------------------------------------------------------------------*/
63 * @param context Test context
64 * @param name Test group's name
65 * @param description Test group's desricption
76 /** Initializes the test group creating test cases that this group consists of
[all …]
DesextcGeometryShaderLayeredRendering.cpp1 /*-------------------------------------------------------------------------
2 * OpenGL Conformance Test Suite
3 * -----------------------------
5 * Copyright (c) 2014-2016 The Khronos Group Inc.
11 * http://www.apache.org/licenses/LICENSE-2.0
22 */ /*-------------------------------------------------------------------*/
99 /* NOTE: provoking_vertex_index holds an integer value which represents platform-reported
137 " gl_Position = vec4(1, -1, 0, 1);\n"
145 " gl_Position = vec4(-1, 1, 0, 1);\n"
153 " gl_Position = vec4(-1, -1, 0, 1);\n"
[all …]
DesextcGeometryShaderBlitting.cpp1 /*-------------------------------------------------------------------------
2 * OpenGL Conformance Test Suite
3 * -----------------------------
5 * Copyright (c) 2014-2016 The Khronos Group Inc.
11 * http://www.apache.org/licenses/LICENSE-2.0
22 */ /*-------------------------------------------------------------------*/
45 * @param context Test context
46 * @param name Test case's name
47 * @param description Test case's desricption
63 /** Executes the test.
[all …]
DesextcGeometryShaderQualifiers.cpp1 /*-------------------------------------------------------------------------
2 * OpenGL Conformance Test Suite
3 * -----------------------------
5 * Copyright (c) 2015-2016 The Khronos Group Inc.
11 * http://www.apache.org/licenses/LICENSE-2.0
22 */ /*-------------------------------------------------------------------*/
36 * @param context Test context
37 * @param name Test case's name
38 * @param description Test case's desricption
54 /** Deinitializes GLES objects created during the test. */
[all …]
/third_party/libunwind/
D.gitignore28 src/[GL]cursor_i.h
29 src/mk_[GL]cursor_i.s
32 tests/[GL]test-bt
33 tests/[GL]test-concurrent
34 tests/[GL]test-dyn1
35 tests/[GL]test-exc
36 tests/[GL]test-init
37 tests/[GL]test-resume-sig
38 tests/[GL]test-resume-sig-rt
39 tests/[GL]perf-simple
[all …]
/third_party/vk-gl-cts/external/openglcts/modules/glesext/tessellation_shader/
DesextcTessellationShaderTessellation.cpp1 /*-------------------------------------------------------------------------
2 * OpenGL Conformance Test Suite
3 * -----------------------------
5 * Copyright (c) 2014-2016 The Khronos Group Inc.
11 * http://www.apache.org/licenses/LICENSE-2.0
22 */ /*-------------------------------------------------------------------*/
35 /** Vertex shader source code for max_in_out_attributes test. */
49 " vec4 value[(gl_MaxTessControlInputComponents) / 4 - 1];\n"
56 " for (int i = 0 ; i < (gl_MaxTessControlInputComponents - "
57 "4) / 4 ; i++)\n" /* Max vec4 output attributes - gl_Position */
[all …]
DesextcTessellationShaderXFB.cpp1 /*-------------------------------------------------------------------------
2 * OpenGL Conformance Test Suite
3 * -----------------------------
5 * Copyright (c) 2014-2016 The Khronos Group Inc.
11 * http://www.apache.org/licenses/LICENSE-2.0
22 */ /*-------------------------------------------------------------------*/
37 * @param context Test context
41 "Verifies transform-feedback captures data from appropriate shader stage.") in TessellationShaderXFB()
60 /** Deinitializes ES objects created for the test. */
71 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); in deinit() local
[all …]
DesextcTessellationShaderTriangles.cpp1 /*-------------------------------------------------------------------------
2 * OpenGL Conformance Test Suite
3 * -----------------------------
5 * Copyright (c) 2014-2016 The Khronos Group Inc.
11 * http://www.apache.org/licenses/LICENSE-2.0
22 */ /*-------------------------------------------------------------------*/
36 * @param context Test context
47 * Initializes test groups for geometry shader tests
58 * @param context Test context
75 /** Deinitializes ES objects created for the test. */
[all …]
DesextcTessellationShaderVertexOrdering.cpp1 /*-------------------------------------------------------------------------
2 * OpenGL Conformance Test Suite
3 * -----------------------------
5 * Copyright (c) 2014-2016 The Khronos Group Inc.
11 * http://www.apache.org/licenses/LICENSE-2.0
22 */ /*-------------------------------------------------------------------*/
36 * @param context Test context
51 /** Deinitializes ES objects created for the test. */
62 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); in deinit() local
65 gl.bindBuffer(GL_TRANSFORM_FEEDBACK_BUFFER, 0 /* buffer */); in deinit()
[all …]
DesextcTessellationShaderMaxPatchVertices.cpp1 /*-------------------------------------------------------------------------
2 * OpenGL Conformance Test Suite
3 * -----------------------------
5 * Copyright (c) 2014-2016 The Khronos Group Inc.
11 * http://www.apache.org/licenses/LICENSE-2.0
22 */ /*-------------------------------------------------------------------*/
33 /* The test creates a patch with max patch vertices count size.
150 * @param context Test context
151 * @param name Test case's name
152 * @param description Test case's description
[all …]
DesextcTessellationShaderProperties.cpp1 /*-------------------------------------------------------------------------
2 * OpenGL Conformance Test Suite
3 * -----------------------------
5 * Copyright (c) 2014-2016 The Khronos Group Inc.
11 * http://www.apache.org/licenses/LICENSE-2.0
22 */ /*-------------------------------------------------------------------*/
37 * @param context Test context
42 "Verifies default values of context-wide tessellation stage properties") in TessellationShaderPropertiesDefaultContextWideValues()
47 /** Executes the test.
49 * Sets the test result to QP_TEST_RESULT_FAIL if the test failed, QP_TEST_RESULT_PASS otherwise.
[all …]
/third_party/vk-gl-cts/external/openglcts/modules/glesext/texture_buffer/
DesextcTextureBufferOperations.cpp1 /*-------------------------------------------------------------------------
2 * OpenGL Conformance Test Suite
3 * -----------------------------
5 * Copyright (c) 2014-2016 The Khronos Group Inc.
11 * http://www.apache.org/licenses/LICENSE-2.0
22 */ /*-------------------------------------------------------------------*/
26 * \brief Texture Buffer Operations (Test 1)
27 */ /*-------------------------------------------------------------------*/
46 * @param context Test context
47 * @param name Test case's name
[all …]
/third_party/vk-gl-cts/modules/gles31/functional/
Des31fVertexAttributeBindingStateQueryTests.cpp1 /*-------------------------------------------------------------------------
3 * -------------------------------------------------
11 * http://www.apache.org/licenses/LICENSE-2.0
22 *//*--------------------------------------------------------------------*/
53 virtual void test (tcu::ResultCollector& result) = 0;
69 test(result); in iterate()
79 void test (tcu::ResultCollector& result);
87 void AttributeBindingCase::test (tcu::ResultCollector& result) in test() function in deqp::gles31::Functional::__anon977363bd0111::AttributeBindingCase
89 glu::CallLogWrapper gl (m_context.getRenderContext().getFunctions(), m_testCtx.getLog()); in test() local
91 glw::GLint maxAttrs = -1; in test()
[all …]
/third_party/vk-gl-cts/external/openglcts/modules/gles31/
Des31cTextureStorageMultisampleTexStorage2DMultisampleTests.cpp1 /*-------------------------------------------------------------------------
2 * OpenGL Conformance Test Suite
3 * -----------------------------
5 * Copyright (c) 2014-2016 The Khronos Group Inc.
11 * http://www.apache.org/licenses/LICENSE-2.0
22 */ /*-------------------------------------------------------------------*/
28 * entry-points (ES3.1 only)
29 */ /*-------------------------------------------------------------------*/
60 /** Deinitializes ES objects created during test execution */
63 /* Delete texture in case the test case failed */ in deinit()
[all …]
Des31cTextureStorageMultisampleTexStorage3DMultisampleTests.cpp1 /*-------------------------------------------------------------------------
2 * OpenGL Conformance Test Suite
3 * -----------------------------
5 * Copyright (c) 2014-2016 The Khronos Group Inc.
11 * http://www.apache.org/licenses/LICENSE-2.0
22 */ /*-------------------------------------------------------------------*/
28 * entry-points (ES3.1 only)
29 */ /*-------------------------------------------------------------------*/
45 * - "valid internalformat and samples values are accepted" test,
46 …* - "requests to set up multisample color textures with unsupported number of samples are rejected…
[all …]
Des31cTextureStorageMultisampleGetMultisamplefvTests.cpp1 /*-------------------------------------------------------------------------
2 * OpenGL Conformance Test Suite
3 * -----------------------------
5 * Copyright (c) 2014-2016 The Khronos Group Inc.
11 * http://www.apache.org/licenses/LICENSE-2.0
22 */ /*-------------------------------------------------------------------*/
29 */ /*-------------------------------------------------------------------*/
56 /** Executes test iteration.
58 * @return Returns STOP when test has finished executing, CONTINUE if more iterations are needed.
62 const glw::Functions& gl = m_context.getRenderContext().getFunctions(); in iterate() local
[all …]
/third_party/vk-gl-cts/external/openglcts/modules/gl/
Dgl4cConditionalRenderInvertedTests.cpp1 /*-------------------------------------------------------------------------
2 * OpenGL Conformance Test Suite
3 * -----------------------------
5 * Copyright (c) 2015-2016 The Khronos Group Inc.
11 * http://www.apache.org/licenses/LICENSE-2.0
22 */ /*-------------------------------------------------------------------*/
32 /******************************** Test Group Implementation ********************************/
39 : TestCaseGroup(context, "conditional_render_inverted", "Conditional Render Inverted Test Suite") in Tests()
58 : deqp::TestCase(context, "coverage", "Conditional Render Inverted Coverage Test"), m_qo_id(0) in CoverageTest()
78 …/* This test should only be executed if we're running a GL4.5 context or related extension is avai… in iterate()
[all …]
Dgl3cTransformFeedbackOverflowQueryTests.cpp1 /*-------------------------------------------------------------------------
2 * OpenGL Conformance Test Suite
3 * -----------------------------
5 * Copyright (c) 2014-2016 The Khronos Group Inc.
11 * http://www.apache.org/licenses/LICENSE-2.0
22 */ /*-------------------------------------------------------------------*/
28 */ /*-------------------------------------------------------------------*/
53 Base class of all test cases of the feature. Enforces the requirements below:
122 /* Basic test init, child classes must call it. */
144 API Implementation Dependent State Test
[all …]
Dgl4cDirectStateAccessBuffersTests.cpp1 /*-------------------------------------------------------------------------
2 * OpenGL Conformance Test Suite
3 * -----------------------------
5 * Copyright (c) 2015-2016 The Khronos Group Inc.
11 * http://www.apache.org/licenses/LICENSE-2.0
22 */ /*-------------------------------------------------------------------*/
28 …*/ /*---------------------------------------------------------------------------------------------…
62 /******************************** Creation Test Implementation ********************************/
64 /** @brief Creation Test constructor.
69 : deqp::TestCase(context, "buffers_creation", "Buffer Objects Creation Test") in CreationTest()
[all …]
Dgl4cDirectStateAccessQueriesTests.cpp1 /*-------------------------------------------------------------------------
2 * OpenGL Conformance Test Suite
3 * -----------------------------
5 * Copyright (c) 2015-2016 The Khronos Group Inc.
11 * http://www.apache.org/licenses/LICENSE-2.0
22 */ /*-------------------------------------------------------------------*/
28 …*/ /*---------------------------------------------------------------------------------------------…
60 /******************************** Creation Test Implementation ********************************/
62 /** @brief Creation Test constructor.
67 : deqp::TestCase(context, "queries_creation", "Query Objects Creation Test") in CreationTest()
[all …]
/third_party/vk-gl-cts/external/openglcts/modules/glesext/texture_cube_map_array/
DesextcTextureCubeMapArrayImageTextureSize.cpp1 /*-------------------------------------------------------------------------
2 * OpenGL Conformance Test Suite
3 * -----------------------------
5 * Copyright (c) 2014-2016 The Khronos Group Inc.
11 * http://www.apache.org/licenses/LICENSE-2.0
22 */ /*-------------------------------------------------------------------*/
26 * \brief texture_cube_map_array extension - Image Texture Size (Test 10)
27 */ /*-------------------------------------------------------------------*/
61 * @param context Test context
62 * @param name Test case's name
[all …]

12345678910>>...42