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

  /external/swiftshader/third_party/PowerVR_SDK/Examples/Beginner/04_BasicTnL/OGLES/
OGLESBasicTnL.cpp 149 float afVertices[] = { -0.4f,-0.4f,0.0f, // Position
167 glBufferData(GL_ARRAY_BUFFER, uiSize, afVertices, GL_STATIC_DRAW);
  /external/swiftshader/third_party/PowerVR_SDK/Examples/Intermediate/ColourGrading/OGLES3/
OGLES3ColourGrading.cpp 367 GLfloat afVertices[] = {
392 float fTmp = afVertices[i * 6 + 1];
393 afVertices[i * 6 + 1] = afVertices[i * 6];
394 afVertices[i * 6] = fTmp;
396 fTmp = afVertices[i * 6 + 5];
397 afVertices[i * 6 + 5] = afVertices[i * 6 + 4];
398 afVertices[i * 6 + 4] = fTmp;
409 glBufferData(GL_ARRAY_BUFFER, 6 * m_ui32VertexStride, afVertices, GL_STATIC_DRAW)
    [all...]
  /external/swiftshader/third_party/PowerVR_SDK/Examples/Beginner/01_HelloAPI/OGLES2/
OGLES2HelloAPI_Windows.cpp 424 GLfloat afVertices[] = { -0.4f,-0.4f,0.0f, // Position
435 unsigned int uiSize = 3 * (sizeof(GLfloat) * 3); // Calc afVertices size (3 vertices * stride (3 GLfloats per vertex))
436 glBufferData(GL_ARRAY_BUFFER, uiSize, afVertices, GL_STATIC_DRAW);

Completed in 45 milliseconds