Subversion Repositories Kolibri OS

Rev

Rev 552 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 552 Rev 1416
Line 10... Line 10...
10
;
10
;
11
;   !!!! Don't use GIF_LITE.INC in your apps - it's modified for FREE3D !!!!
11
;   !!!! Don't use GIF_LITE.INC in your apps - it's modified for FREE3D !!!!
12
;
12
;
13
;   Heavyiron - new 0-function of drawing window from kolibri (do not work correctly with menuet)
13
;   Heavyiron - new 0-function of drawing window from kolibri (do not work correctly with menuet)
Line -... Line 14...
-
 
14
 
14
 
15
 
15
TEX_SIZE equ 64*64*4
16
TEX_SIZE equ 64*64*4
16
ceil = sinus+16*1024
17
ceil = sinus+16*1024
17
wall = ceil+TEX_SIZE*1
18
wall = ceil+TEX_SIZE*1
18
wall2 = ceil+TEX_SIZE*2
19
wall2 = ceil+TEX_SIZE*2
Line 299... Line 300...
299
    mcall
300
    mcall
Line 300... Line 301...
300
 
301
 
301
                                   ; DRAW WINDOW
302
                                   ; DRAW WINDOW
302
    mov  eax,0                     ; function 0 : define and draw window
303
    mov  eax,0                     ; function 0 : define and draw window
303
    mov  ebx,50*65536+649         ; [x start] *65536 + [x size]
304
    mov  ebx,50*65536+649         ; [x start] *65536 + [x size]
304
    mov  ecx,50*65536+504         ; [y start] *65536 + [y size]
305
    mov  ecx,50*65536+506         ; [y start] *65536 + [y size]
305
    mov  edx,0x34ffffff            ; color of work area RRGGBB,8->color gl
306
    mov  edx,0x74ffffff            ; color of work area RRGGBB,8->color gl
306
    mov  edi,title
307
    mov  edi,title
Line 307... Line 308...
307
    mcall
308
    mcall
308
 
309