Can't find the brl.blitzgl module

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

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

just run it through framework assistant - thats what I do

Import brl.GLGraphics
Import pub.opengl

Try importing the above.

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

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.

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