Home
Products
Community
Manuals
Contact
Login or Signup

ATI OpenGL?

BlitzMax Forums/BlitzMax OpenGL Programming/ATI OpenGL?

BLaBZ(Posted 1+ years ago) #1
I'm using some OpenGL commands alongside with miniB3D and everything works perfectly on my intel chipset as well as a couple of other laptops I have, but not on my desktop with a high end ati card.

Is this common?


CaptainWicker[IS](Posted 1+ years ago) #2
hmm ... it could be because my iMac uses AMD Radeon (formerly ATI) and has problems like being too fast or graphical errors and things of the sort.
My Fix is to turn on VSync by typing this in at the bottom of your program loop:
Repeat

Flip( True ) 'for minib3d
Flip( -1 ) 'for blitzmax
Until AppTerminate()


Last edited 1+ years ago