Notice: We have migrated to GitLab launching 2024-05-01 see here: https://gitlab.rtems.org/

Changes between Version 29 and Version 30 of Projects/GraphicsToolkit


Ignore:
Timestamp:
06/26/15 13:14:47 (9 years ago)
Author:
Pavel Pisa
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Projects/GraphicsToolkit

    v29 v30  
    271271
    272272The graphic mode is selected at RTEMS executive startup by kernel command line
     273
    273274{{{
    274275--video=auto
    275276}}}
    276  or the default mode can be specified directly in application by fill of the global variable
     277
     278or the default mode can be specified directly in application by fill of the global variable
     279
    277280{{{
    278281const char * const rtems_fb_default_mode="auto";
     
    280283
    281284All possible options for command line or variable initializer are
    282 * auto - the attached monitor DDC supported modes list is read and matched to the graphic
    283   card provided capabilities, it should choose native resolution mode for displays which provide such entry
    284   and corresponding mode is supported by a card
    285 * off - do not initialize graphics - because mode switch is possible only during startup this means that graphic output is disabled
    286 * 1024x768-32 etc - manual selection of the mode and color depth
     285 * auto - the attached monitor DDC supported modes list is read and matched to the graphic
     286   card provided capabilities, it should choose native resolution mode for displays which provide such entry
     287   and corresponding mode is supported by a card
     288 * off - do not initialize graphics - because mode switch is possible only during startup this means that graphic output is disabled
     289 * 1024x768-32 etc - manual selection of the mode and color depth
    287290
    288291The graphic support is disabled (off option) if nothing is specified on command line