See pub.mod/glew.mod/glew.bmx
Global glCopyTexSubImage3D(target_:Int,level_:Int,xoffset_:Int,yoffset_:Int,zoffset_:Int,x_:Int,y_:Int,width_:Int,height_:Int)="__glewCopyTexSubImage3D"
Ok this was a function-pointer.
but what is this:
Global GL_VERSION_1_1:Byte="__GLEW_VERSION_1_1"
i think this is a byte pointer - and that was set to __GLEW_VERSION_1_1
is this true?
if i call
print GL_VERSION_1_1
this works
but
print GL_VERSION_1_1()
do not work, so i think that this is not a function...
Global glCopyTexSubImage3D(target_:Int,level_:Int,xoffset_:Int,yoffset_:Int,zoffset_:Int,x_:Int,y_:Int,width_:Int,height_:Int)="__glewCopyTexSubImage3D"
Ok this was a function-pointer.
but what is this:
Global GL_VERSION_1_1:Byte="__GLEW_VERSION_1_1"
i think this is a byte pointer - and that was set to __GLEW_VERSION_1_1
is this true?
if i call
print GL_VERSION_1_1
this works
but
print GL_VERSION_1_1()
do not work, so i think that this is not a function...