OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_coordLoc
(Results
1 - 2
of
2
) sorted by null
/external/deqp/modules/egl/
teglPreservingSwapTests.cpp
110
glw::GLuint
m_coordLoc
;
120
,
m_coordLoc
((glw::GLuint)-1)
174
m_coordLoc
= m_gl.getAttribLocation(m_glProgram, "a_pos");
178
TCU_CHECK(
m_coordLoc
!= (glw::GLuint)-1);
233
m_gl.enableVertexAttribArray(
m_coordLoc
);
237
m_gl.vertexAttribPointer(
m_coordLoc
, 4, GL_FLOAT, GL_FALSE, 0, coords);
244
m_gl.disableVertexAttribArray(
m_coordLoc
);
teglGLES2SharedRenderingPerfTests.cpp
136
GLuint
m_coordLoc
;
600
m_coordLoc
= m_gl.getAttribLocation(m_program, "a_coord");
683
m_gl.enableVertexAttribArray(
m_coordLoc
);
688
m_gl.vertexAttribPointer(
m_coordLoc
, 2, GL_FLOAT, GL_FALSE, 0, 0);
692
m_gl.vertexAttribPointer(
m_coordLoc
, 2, GL_FLOAT, GL_FALSE, 0, &(m_coordData[0]));
717
m_gl.disableVertexAttribArray(
m_coordLoc
);
[
all
...]
Completed in 954 milliseconds