Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
3545 hidnplayr 1
 
2
        bpp             db ?
3
        depth           db ?
4
        big_endian      db ?
5
        true_color      db ?
6
        red_max         dw ?
7
        green_max       dw ?
8
        blue_max        dw ?
9
        red_shift       db ?
10
        green_shift     db ?
11
        blue_shift      db ?
12
        padding         rb 3
13
ends
14
15
 
16
        width           dw ?
17
        height          dw ?
18
        pixelformat     pixel_format
19
        name_length     dd ?
20
        name            rb 256
21
ends
22