Lines Matching refs:programFetch
1074 void DrawNonFetchDrawFetchTest(GLProgram &programNonFetch, GLProgram &programFetch) in DrawNonFetchDrawFetchTest() argument
1103 glUseProgram(programFetch); in DrawNonFetchDrawFetchTest()
1106 GLint colorLocationFetch = glGetUniformLocation(programFetch, "u_color"); in DrawNonFetchDrawFetchTest()
1109 GLint positionLocationFetch = glGetAttribLocation(programFetch, "a_position"); in DrawNonFetchDrawFetchTest()
1127 glUseProgram(programFetch); in DrawNonFetchDrawFetchTest()
1140 void DrawFetchDrawNonFetchTest(GLProgram &programNonFetch, GLProgram &programFetch) in DrawFetchDrawNonFetchTest() argument
1142 glUseProgram(programFetch); in DrawFetchDrawNonFetchTest()
1158 GLint colorLocationFetch = glGetUniformLocation(programFetch, "u_color"); in DrawFetchDrawNonFetchTest()
1161 GLint positionLocationFetch = glGetAttribLocation(programFetch, "a_position"); in DrawFetchDrawNonFetchTest()
1182 glUseProgram(programFetch); in DrawFetchDrawNonFetchTest()
1210 GLProgram &programFetch, in DrawNonFetchDrawFetchInStorageBufferTest() argument
1257 glUseProgram(programFetch); in DrawNonFetchDrawFetchInStorageBufferTest()
1260 GLint colorLocationFetch = glGetUniformLocation(programFetch, "u_color"); in DrawNonFetchDrawFetchInStorageBufferTest()
1263 GLint positionLocationFetch = glGetAttribLocation(programFetch, "a_position"); in DrawNonFetchDrawFetchInStorageBufferTest()
1307 GLProgram &programFetch) in DrawNonFetchDrawFetchWithDifferentAttachmentsTest() argument
1334 glUseProgram(programFetch); in DrawNonFetchDrawFetchWithDifferentAttachmentsTest()
1365 GLint colorLocation = glGetUniformLocation(programFetch, "u_color"); in DrawNonFetchDrawFetchWithDifferentAttachmentsTest()
1368 GLint positionLocation = glGetAttribLocation(programFetch, "a_position"); in DrawNonFetchDrawFetchWithDifferentAttachmentsTest()
1582 void DrawFetchBlitDrawFetchTest(GLProgram &programNonFetch, GLProgram &programFetch) in DrawFetchBlitDrawFetchTest() argument
1584 glUseProgram(programFetch); in DrawFetchBlitDrawFetchTest()
1616 GLint colorLocation = glGetUniformLocation(programFetch, "u_color"); in DrawFetchBlitDrawFetchTest()
1619 GLint positionLocation = glGetAttribLocation(programFetch, "a_position"); in DrawFetchBlitDrawFetchTest()
1682 GLProgram programVert, programNonFetch, programFetch; in ProgramPipelineTest() local
1704 glProgramParameteri(programFetch, GL_PROGRAM_SEPARABLE, GL_TRUE); in ProgramPipelineTest()
1705 glAttachShader(programFetch, fragShader2); in ProgramPipelineTest()
1706 glLinkProgram(programFetch); in ProgramPipelineTest()
1741 glUseProgramStages(pipeline2, GL_FRAGMENT_SHADER_BIT, programFetch); in ProgramPipelineTest()
1745 glActiveShaderProgram(pipeline2, programFetch); in ProgramPipelineTest()
1747 GLint colorLocationFetch = glGetUniformLocation(programFetch, "u_color"); in ProgramPipelineTest()
1775 glUseProgramStages(pipeline4, GL_FRAGMENT_SHADER_BIT, programFetch); in ProgramPipelineTest()
1779 glActiveShaderProgram(pipeline4, programFetch); in ProgramPipelineTest()
1780 colorLocationFetch = glGetUniformLocation(programFetch, "u_color"); in ProgramPipelineTest()
2034 GLProgram programNonFetch, programFetch; in TEST_P() local
2036 programFetch.makeRaster(k310VS, getFragmentShader(GLSL310_1ATTACHMENT)); in TEST_P()
2039 DrawNonFetchDrawFetchTest(programNonFetch, programFetch); in TEST_P()
2048 GLProgram programNonFetch, programFetch; in TEST_P() local
2050 programFetch.makeRaster(k310VS, getFragmentShader(GLSL310_1ATTACHMENT)); in TEST_P()
2053 DrawNonFetchDrawFetchTest(programNonFetch, programFetch); in TEST_P()
2062 GLProgram programNonFetch, programFetch; in TEST_P() local
2064 programFetch.makeRaster(k310VS, getFragmentShader(GLSL310_1ATTACHMENT)); in TEST_P()
2067 DrawFetchDrawNonFetchTest(programNonFetch, programFetch); in TEST_P()
2076 GLProgram programNonFetch, programFetch; in TEST_P() local
2078 programFetch.makeRaster(k310VS, getFragmentShader(GLSL310_1ATTACHMENT)); in TEST_P()
2081 DrawFetchDrawNonFetchTest(programNonFetch, programFetch); in TEST_P()
2094 GLProgram programNonFetch, programFetch; in TEST_P() local
2096 programFetch.makeRaster(k310VS, getFragmentShader(GLSL310_1ATTACHMENT_WITH_STORAGE_BUFFER)); in TEST_P()
2099 DrawNonFetchDrawFetchInStorageBufferTest(programNonFetch, programFetch, in TEST_P()
2114 GLProgram programNonFetch, programFetch; in TEST_P() local
2116 programFetch.makeRaster(k310VS, getFragmentShader(GLSL310_1ATTACHMENT_WITH_STORAGE_BUFFER)); in TEST_P()
2119 DrawNonFetchDrawFetchInStorageBufferTest(programNonFetch, programFetch, in TEST_P()
2130 GLProgram programNonFetch, programFetch; in TEST_P() local
2132 programFetch.makeRaster(k310VS, getFragmentShader(GLSL310_4ATTACHMENT_DIFFERENT1)); in TEST_P()
2135 DrawNonFetchDrawFetchWithDifferentAttachmentsTest(programNonFetch, programFetch); in TEST_P()
2149 GLProgram programNonFetch, programFetch; in TEST_P() local
2151 programFetch.makeRaster(k310VS, getFragmentShader(GLSL310_1ATTACHMENT_WITH_STORAGE_BUFFER)); in TEST_P()
2154 DrawNonFetchDrawFetchInStorageBufferTest(programNonFetch, programFetch, in TEST_P()
2169 GLProgram programNonFetch, programFetch; in TEST_P() local
2171 programFetch.makeRaster(k310VS, getFragmentShader(GLSL310_1ATTACHMENT_WITH_STORAGE_BUFFER)); in TEST_P()
2174 DrawNonFetchDrawFetchInStorageBufferTest(programNonFetch, programFetch, in TEST_P()
2185 GLProgram programNonFetch, programFetch; in TEST_P() local
2187 programFetch.makeRaster(k310VS, getFragmentShader(GLSL310_4ATTACHMENT_DIFFERENT1)); in TEST_P()
2190 DrawNonFetchDrawFetchWithDifferentAttachmentsTest(programNonFetch, programFetch); in TEST_P()
2261 GLProgram programNonFetch, programFetch; in TEST_P() local
2263 programFetch.makeRaster(k310VS, getFragmentShader(GLSL310_4ATTACHMENT_DIFFERENT1)); in TEST_P()
2266 DrawFetchBlitDrawFetchTest(programNonFetch, programFetch); in TEST_P()
2275 GLProgram programNonFetch, programFetch; in TEST_P() local
2277 programFetch.makeRaster(k310VS, getFragmentShader(GLSL310_4ATTACHMENT_DIFFERENT1)); in TEST_P()
2280 DrawFetchBlitDrawFetchTest(programNonFetch, programFetch); in TEST_P()
2899 GLProgram programNonFetch, programFetch; in TEST_P() local
2901 programFetch.makeRaster(k310VS, getFragmentShader(GLSL310_1ATTACHMENT)); in TEST_P()
2904 DrawNonFetchDrawFetchTest(programNonFetch, programFetch); in TEST_P()
2913 GLProgram programNonFetch, programFetch; in TEST_P() local
2915 programFetch.makeRaster(k310VS, getFragmentShader(GLSL310_1ATTACHMENT)); in TEST_P()
2918 DrawFetchDrawNonFetchTest(programNonFetch, programFetch); in TEST_P()
2931 GLProgram programNonFetch, programFetch; in TEST_P() local
2933 programFetch.makeRaster(k310VS, getFragmentShader(GLSL310_1ATTACHMENT_WITH_STORAGE_BUFFER)); in TEST_P()
2936 DrawNonFetchDrawFetchInStorageBufferTest(programNonFetch, programFetch, in TEST_P()
2951 GLProgram programNonFetch, programFetch; in TEST_P() local
2953 programFetch.makeRaster(k310VS, getFragmentShader(GLSL310_1ATTACHMENT_WITH_STORAGE_BUFFER)); in TEST_P()
2956 DrawNonFetchDrawFetchInStorageBufferTest(programNonFetch, programFetch, in TEST_P()
3461 GLProgram programNonFetch, programFetch; in TEST_P() local
3463 programFetch.makeRaster(k310VS, getFragmentShader(GLSL310_1ATTACHMENT)); in TEST_P()
3466 DrawNonFetchDrawFetchTest(programNonFetch, programFetch); in TEST_P()
3477 GLProgram programNonFetch, programFetch; in TEST_P() local
3479 programFetch.makeRaster(k310VS, getFragmentShader(GLSL310_1ATTACHMENT)); in TEST_P()
3482 DrawFetchDrawNonFetchTest(programNonFetch, programFetch); in TEST_P()