Changeset 76fca31 in mainline for kernel/genarch/include
- Timestamp:
- 2008-12-16T19:02:07Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5ae4443
- Parents:
- 8fe5980
- Location:
- kernel/genarch/include/fb
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/genarch/include/fb/fb.h
r8fe5980 r76fca31 27 27 */ 28 28 29 /** @addtogroup genarch 29 /** @addtogroup genarch 30 30 * @{ 31 31 */ … … 66 66 67 67 SPINLOCK_EXTERN(fb_lock); 68 69 void fb_redraw(void); 68 70 void fb_init(fb_properties_t *props); 69 71 -
kernel/genarch/include/fb/font-8x16.h
r8fe5980 r76fca31 27 27 */ 28 28 29 /** @addtogroup genarch 29 /** @addtogroup genarch 30 30 * @{ 31 31 */ … … 36 36 #define KERN_FONT_8X16_H_ 37 37 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 40 41 41 extern unsigned char fb_font[FONT_GLIPHS * FONT_SCANLINES]; 42 #include <arch/types.h> 43 44 extern uint8_t fb_font[FONT_GLYPHS * FONT_SCANLINES]; 42 45 43 46 #endif -
kernel/genarch/include/fb/visuals.h
r8fe5980 r76fca31 27 27 */ 28 28 29 /** @addtogroup genarch 29 /** @addtogroup genarch 30 30 * @{ 31 31 */ … … 36 36 #define KERN_VISUALS_H_ 37 37 38 #define VISUAL_INDIRECT_8 038 #define VISUAL_INDIRECT_8 0 39 39 40 #define VISUAL_RGB_5_5_5 141 #define VISUAL_RGB_5_6_5 242 #define VISUAL_RGB_8_8_8 343 #define VISUAL_RGB_8_8_8_0 444 #define VISUAL_RGB_0_8_8_8 540 #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 45 45 46 #define VISUAL_BGR_0_8_8_8 646 #define VISUAL_BGR_0_8_8_8 6 47 47 48 48 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
