Lines Matching defs:index
117 void BindBase(glw::GLuint index) const;
119 void BindRange(glw::GLuint index, glw::GLintptr offset, glw::GLsizeiptr size) const;
132 static void BindBase(const glw::Functions& gl, glw::GLuint id, glw::GLenum target, glw::GLuint index);
134 static void BindRange(const glw::Functions& gl, glw::GLuint id, glw::GLenum target, glw::GLuint index,
562 * @param index <index> parameter
564 void Buffer::BindBase(glw::GLuint index) const
568 BindBase(gl, m_id, m_target, index);
573 * @param index <index> parameter
577 void Buffer::BindRange(glw::GLuint index, glw::GLintptr offset, glw::GLsizeiptr size) const
581 BindRange(gl, m_id, m_target, index, offset, size);
651 * @param index <index> parameter
653 void Buffer::BindBase(const glw::Functions& gl, glw::GLuint id, glw::GLenum target, glw::GLuint index)
655 gl.bindBufferBase(target, index, id);
664 * @param index <index> parameter
668 void Buffer::BindRange(const glw::Functions& gl, glw::GLuint id, glw::GLenum target, glw::GLuint index,
671 gl.bindBufferRange(target, index, id, offset, size);
2975 " uint index = gl_GlobalInvocationID.x;\n"
2978 " for (uint i = 0u; i <= index; ++i)\n"
2983 " destination.values[index] = sum;\n"
3150 " uint index = gl_GlobalInvocationID.x;\n"
3153 " for (uint i = 0u; i <= index; ++i)\n"
3158 " destination.values[index] = sum;\n"