Lines Matching defs:m_gridSide
640 const int m_gridSide;
646 , m_gridSide (gridSide)
691 float cellW = 2.0f / (float)m_gridSide;
692 float cellH = 2.0f / (float)m_gridSide;
711 for (int x = 0; x < m_gridSide; ++x)
712 for (int y = 0; y < m_gridSide; ++y)
716 for (int x = 0; x < m_gridSide; ++x)
717 for (int y = 0; y < m_gridSide; ++y)
755 ctx.drawElementsInstanced(GL_TRIANGLES, 6, GL_UNSIGNED_SHORT, DE_NULL, m_gridSide * m_gridSide);
757 ctx.drawArraysInstanced(GL_TRIANGLES, 0, 6, m_gridSide * m_gridSide);