texStorage2D method
Implementation
void texStorage2D(int target, int levels, int internalformat, int width, int height){
startCheck("texStorage2D");
glTexStorage2D(_gl, target, levels, internalformat, width, height);
checkError('texStorage2D');
}