HomeSort by relevance Sort by last modified time
    Searched refs:m_texCoords (Results 1 - 4 of 4) sorted by null

  /sdk/emulator/opengl/host/libs/Translator/GLES_CM/
GLEScmContext.cpp 31 m_texCoords = new GLESpointer[s_glSupport.maxTexUnits];
32 m_map[GL_TEXTURE_COORD_ARRAY] = &m_texCoords[m_clientActiveTexture];
42 GLEScmContext::GLEScmContext():GLEScontext(),m_texCoords(NULL),m_pointsIndex(-1), m_clientActiveTexture(0) {
57 m_map[GL_TEXTURE_COORD_ARRAY] = &m_texCoords[m_clientActiveTexture];
61 if(m_texCoords){
62 delete[] m_texCoords;
63 m_texCoords = NULL;
GLEScmContext.h 62 GLESpointer* m_texCoords;
  /external/deqp/modules/gles2/functional/
es2fVertexTextureTests.cpp 195 const float* getTexCoordPtr (void) const { DE_STATIC_ASSERT(sizeof(TexCoordVec) == TEX_COORD_DIMS*(int)sizeof(float)); return (float*)&m_texCoords[0]; }
203 vector<TexCoordVec> m_texCoords;
222 return m_texCoords[(row*m_gridSize + col) * 4];
260 m_texCoords.reserve(m_gridSize*m_gridSize*4);
265 DE_ASSERT((int)m_texCoords.size() == m_gridSize*m_gridSize*4);
271 DE_ASSERT(m_texCoords.empty());
281 m_texCoords.push_back(useSafeTexCoords ? safe2DTexCoords(rawCoord, textureSize) : rawCoord);
288 DE_ASSERT(m_texCoords.empty());
307 m_texCoords.push_back(texCoord);
    [all...]
  /external/deqp/modules/gles3/functional/
es3fVertexTextureTests.cpp 245 const float* getTexCoordPtr (void) const { DE_STATIC_ASSERT(sizeof(TexCoordVec) == TEX_COORD_DIMS*(int)sizeof(float)); return (float*)&m_texCoords[0]; }
253 vector<TexCoordVec> m_texCoords;
272 return m_texCoords[(row*m_gridSize + col) * 4];
310 m_texCoords.reserve(m_gridSize*m_gridSize*4);
315 DE_ASSERT((int)m_texCoords.size() == m_gridSize*m_gridSize*4);
321 DE_ASSERT(m_texCoords.empty());
331 m_texCoords.push_back(useSafeTexCoords ? safe2DTexCoords(rawCoord, textureSize) : rawCoord);
338 DE_ASSERT(m_texCoords.empty());
357 m_texCoords.push_back(texCoord);
364 DE_ASSERT(m_texCoords.empty())
    [all...]

Completed in 44 milliseconds