Changeset 76fca31 in mainline for kernel/genarch/include


Ignore:
Timestamp:
2008-12-16T19:02:07Z (17 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5ae4443
Parents:
8fe5980
Message:

kconsole is optional
kernel & uspace framebuffer rewrite with speedups (some things are slightly broken yet)

Location:
kernel/genarch/include/fb
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • kernel/genarch/include/fb/fb.h

    r8fe5980 r76fca31  
    2727 */
    2828
    29 /** @addtogroup genarch 
     29/** @addtogroup genarch
    3030 * @{
    3131 */
     
    6666
    6767SPINLOCK_EXTERN(fb_lock);
     68
     69void fb_redraw(void);
    6870void fb_init(fb_properties_t *props);
    6971
  • kernel/genarch/include/fb/font-8x16.h

    r8fe5980 r76fca31  
    2727 */
    2828
    29 /** @addtogroup genarch 
     29/** @addtogroup genarch
    3030 * @{
    3131 */
     
    3636#define KERN_FONT_8X16_H_
    3737
    38 #define FONT_GLIPHS             256
    39 #define FONT_SCANLINES  16
     38#define FONT_GLYPHS      256
     39#define FONT_WIDTH       8
     40#define FONT_SCANLINES   16
    4041
    41 extern unsigned char fb_font[FONT_GLIPHS * FONT_SCANLINES];
     42#include <arch/types.h>
     43
     44extern uint8_t fb_font[FONT_GLYPHS * FONT_SCANLINES];
    4245
    4346#endif
  • kernel/genarch/include/fb/visuals.h

    r8fe5980 r76fca31  
    2727 */
    2828
    29 /** @addtogroup genarch 
     29/** @addtogroup genarch
    3030 * @{
    3131 */
     
    3636#define KERN_VISUALS_H_
    3737
    38 #define VISUAL_INDIRECT_8       0
     38#define VISUAL_INDIRECT_8   0
    3939
    40 #define VISUAL_RGB_5_5_5        1
    41 #define VISUAL_RGB_5_6_5        2
    42 #define VISUAL_RGB_8_8_8        3
    43 #define VISUAL_RGB_8_8_8_0      4
    44 #define VISUAL_RGB_0_8_8_8      5
     40#define VISUAL_RGB_5_5_5    1
     41#define VISUAL_RGB_5_6_5    2
     42#define VISUAL_RGB_8_8_8    3
     43#define VISUAL_RGB_8_8_8_0  4
     44#define VISUAL_RGB_0_8_8_8  5
    4545
    46 #define VISUAL_BGR_0_8_8_8      6
     46#define VISUAL_BGR_0_8_8_8  6
    4747
    4848#endif
Note: See TracChangeset for help on using the changeset viewer.