Bmax 1.10 and flip ?

BlitzMax Forums/BlitzMax Programming/Bmax 1.10 and flip ?

Filax(Posted 2005) [#1]
WIth this version how i can remove the screen sync ?

With previous version i use :

' ------------------
' Deactivate synchro
' ------------------
bglSetSwapInterval(0)

And

' ------------------------
' Swap buffer and flushmem
' ------------------------
bglSwapBuffers()


klepto2(Posted 2005) [#2]
bglSetSwapInterval(0)

has changed to

setswapinterval

and I think it will be the same for Swapbuffers.


Filax(Posted 2005) [#3]
Many thanks !


marksibly(Posted 2005) [#4]
Hi,

Recommended method is now:

Graphics width,height,depth,NOSYNC


Filax(Posted 2005) [#5]
Ok :) thanks.