Lines Matching defs:internal_format
3259 * @param internal_format Internal format of texture
3264 void Texture::Init(TYPES tex_type, GLuint width, GLuint height, GLuint depth, GLenum internal_format, GLenum format,
3277 Storage(gl, tex_type, width, height, depth, internal_format);
3283 * @param internal_format Internal format of texture
3286 void Texture::Init(GLenum internal_format, GLuint buffer_id)
3298 TexBuffer(gl, buffer_id, internal_format);
3432 * @param internal_format Internal format of texture
3435 GLenum internal_format)
3444 gl.texStorage1D(target, levels, internal_format, width);
3451 gl.texStorage2D(target, levels, internal_format, width, height);
3456 gl.texStorage3D(target, levels, internal_format, width, height, depth);
3467 * @param internal_format Internal format of texture
3470 void Texture::TexBuffer(const Functions& gl, GLenum internal_format, GLuint& buffer_id)
3472 gl.texBuffer(GL_TEXTURE_BUFFER, internal_format, buffer_id);