This wiki is out of date, use the continuation of this wiki instead

Render flags

From FenixWiki

(Difference between revisions)
Jump to: navigation, search
Revision as of 13:54, 26 April 2007 (edit)
Sandman (Talk | contribs)

← Previous diff
Current revision (01:34, 24 July 2007) (edit) (undo)
Rincewind (Talk | contribs)
(Definition - pipe character info added)
 
(9 intermediate revisions not shown.)
Line 1: Line 1:
-* MODE_FULLSCREEN: Enables fullscreen view.+[[Category:constantcategories]]
-* MODE_WINDOW: Enables window view.+== Definition ==
 +Render flags are used to specify the mode of rendering, by passing them to the function [[set_mode]]() as the flags parameter. Multiple render flags can be specified using "|" (pipe character) for separation.
-* MODE_2XSCALE: Doubles the resolution. Edges get smoothed.+See also [[graph_modes]].
-* MODE_HARDWARE: Enables writing directly to Video RAM instead of main RAM, which causes some operations to speed up and some to slow down.+== List ==
 +{|
 +| ''Constant'' || - ''Value'' || - ''Description''
 +|-
 +| MODE_WINDOW || - 0 || - Enables window view.
 +|-
 +| MODE_2XSCALE || - 256 || - Doubles the resolution. Edges get smoothed using the scale2x algorithm.
 +|-
 +| MODE_FULLSCREEN || - 512 || - Enables fullscreen view.
 +|-
 +| MODE_DOUBLEBUFFER || - 1024 || - Enables using a double buffer for display. Also called DOUBLE_BUFFER.
 +|-
 +| MODE_HARDWARE || - 2048 || - Enables writing directly to Video RAM instead of main RAM. Also called HW_SURFACE.
 +|-
 +| MODE_MODAL || - 4096 || - Makes the main window a Modal window.
 +|-
 +| MODE_FRAMELESS || - 8192 || - Makes the main window borderless.
 +|}
-* MODE_DOUBLEBUFFER: Enables using a double buffer for display, which causes frame transitions to be smoother.+== More info ==
 +* MODE_HARDWARE can cause some operations to speed up and some to slow down.
-* MODE_MODAL: Makes the main window a Modal window, causing it to stay focused and hold the mouse.+* MODE_DOUBLEBUFFER can cause frame transitions to be smoother. However, compatibility with [[restore modes|restore_type = partial_restore]] is lost!
-* MODE_FRAMELESS: Makes the main window borderless.+* MODE_MODAL causes the main window to stay focused and hold the mouse.

Current revision


[edit] Definition

Render flags are used to specify the mode of rendering, by passing them to the function set_mode() as the flags parameter. Multiple render flags can be specified using "|" (pipe character) for separation.

See also graph_modes.

[edit] List

Constant - Value - Description
MODE_WINDOW - 0 - Enables window view.
MODE_2XSCALE - 256 - Doubles the resolution. Edges get smoothed using the scale2x algorithm.
MODE_FULLSCREEN - 512 - Enables fullscreen view.
MODE_DOUBLEBUFFER - 1024 - Enables using a double buffer for display. Also called DOUBLE_BUFFER.
MODE_HARDWARE - 2048 - Enables writing directly to Video RAM instead of main RAM. Also called HW_SURFACE.
MODE_MODAL - 4096 - Makes the main window a Modal window.
MODE_FRAMELESS - 8192 - Makes the main window borderless.

[edit] More info

  • MODE_HARDWARE can cause some operations to speed up and some to slow down.
  • MODE_MODAL causes the main window to stay focused and hold the mouse.
Personal tools