Lines Matching defs:width
137 * @param width Texture width
140 void Utils::framebuffer::attachTexture(glw::GLenum attachment, glw::GLuint texture_id, glw::GLuint width,
154 gl.viewport(0 /* x */, 0 /* y */, width, height);
694 * @param width Width of texture
698 void Utils::texture::create(glw::GLuint width, glw::GLuint height, glw::GLenum internal_format)
707 gl.texStorage2D(GL_TEXTURE_2D, 1 /* levels */, internal_format, width, height);
729 * @param width Width of texture
735 void Utils::texture::update(glw::GLuint width, glw::GLuint height, glw::GLenum format, glw::GLenum type,
742 gl.texSubImage2D(GL_TEXTURE_2D, 0 /* level */, 0 /* x */, 0 /* y */, width, height, format, type, data);