pub.directx Constants

BlitzMax Forums/BlitzMax Module Tweaks/pub.directx Constants

N(Posted 2005) [#1]
Here's some constants for ya:
Const D3DPRESENT_INTERVAL_DEFAULT = 0
Const D3DPRESENT_INTERVAL_ONE = $00000001
Const D3DPRESENT_INTERVAL_TWO = $00000002
Const D3DPRESENT_INTERVAL_THREE = $00000004
Const D3DPRESENT_INTERVAL_FOUR = $00000008
Const D3DPRESENT_INTERVAL_IMMEDIATE = $80000000


I need any more and I'll post'em. In the mean time, I shall stick these in my D3D9Device module.


ckob(Posted 2005) [#2]
so are you making a module for directx?


N(Posted 2005) [#3]
I'm writing a D3D9Device class (seperate module) for my engine. So far there's a software (2D, nothing in video RAM) device class and a GL device class. This'll complete the set.