[ TDx_Draw ]
[ next: EnumSurfaces() ]
[ prev: DuplicateSurface() ]
public:
virtual bool __fastcall EnumDisplayModes( dword pFlags, TDDSurfaceDesc* pSurfaceDesc, void* pContext );
If you would like to submit additions or improvements to this page, click: admin@bcb-tools.com.
DESCRIPTION
Top
Parameters
See Also
The
TDx_Draw::EnumDisplayModes
method
will
enumerate
display
modes
that
are
available
from
the
current
video
card
and
monitor
combination.
Calling
this
method
triggers
the
TDx_Draw::OnEnumDisplayModes()
event.
If
this
method
call
fails,
the
one
of
the
following
values
will
be
returned:
DDERR_INVALIDOBJECT
DDERR_INVALIDPARAMS
PARAMETERS
Top
See Also
Flags
The Flags parameter defines flags indicating whether refresh rate and mode13 are taken into account when enumeration is being performed.
Typically, this parameter is set to 0 to ignore extra options.
The described effect applies when the flag is set.
DDEDM_REFRESHRATES
Enumeration is to define display modes that have different refresh rates as being unique.
DDEDM_STANDARDVGAMODES
Enumerate Mode 13 as well as Mode X.
Refer to the DirectX SDK for details on "Mode X and Mode 13 Display Modes" limitations.
SurfaceDesc
The SurfaceDesc parameter references a TDDSurfaceDesc component to be compared to available display modes.
Set this parameter to NULL to enumerate all display modes.
Context
The Context parameter references an application defined object to be passed to the callback function for each display mode enumerated.
Set this parameter to NULL if you do not need to pass any further information to the TDx_Draw::EnumModesCallback() event.
SEE ALSO
Top
Parameters