Can't find the brl.blitzgl module

BlitzMax Forums/OpenGL Module/Can't find the brl.blitzgl module

Battle Tanks(Posted 2006) [#1]
some one has kindly converted NeHe tutorials in BiltzMax but they need the brl.blitzgl module.

Where can I get this is it now called something else?

Any help would be Appreciated


Chris C(Posted 2006) [#2]
just run it through framework assistant - thats what I do


Bremer(Posted 2006) [#3]
Import brl.GLGraphics
Import pub.opengl

Try importing the above.


Battle Tanks(Posted 2006) [#4]
Where do I find framework assistant?

I have tryed
Import brl.GLGraphics
Import pub.opengl
with out success
I am still getting ('bglCreateContext' not found) Error

I have also search my computer for the brl.blitzgl module without success

here are the opening lines of the HeNe 7

Framework brl.blitzgl ' this it the problem line
Import brl.bmploader
Import brl.system

Any help would be Appreciated


Bremer(Posted 2006) [#5]
Thats because that command no longer exist. Use the following to create a window:

GLGraphics( width, height, 0, rate, GRAPHICS_BACKBUFFER|GRAPHICS_DEPTHBUFFER ) 'windowed
GLGraphics( width, height, 32, rate, GRAPHICS_BACKBUFFER|GRAPHICS_DEPTHBUFFER ) ' fullscreen


[edit] blitzGl no longer exist either. Its within the GLgraphics module now.


Battle Tanks(Posted 2006) [#6]
Thank for your help
I have still have some problems with some files

here they are
Some give this error
Unable to convert from 'String to Byte Ptr'

And here is the line
glCallLists(phrase.length, GL_UNSIGNED_BYTE, Byte Ptr phrase) ' Write The Text To The Screen

How could I fix this?

Thanks for you help