Subversion Repositories Kolibri OS

Rev

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

Rev 2733 Rev 3036
Line 1... Line 1...
1
;;================================================================================================;;
1
;;================================================================================================;;
2
;;//// libimg.asm //// (c) mike.dld, 2007-2008, (c) diamond, 2009 ////////////////////////////////;;
2
;;//// libimg.asm //// (c) mike.dld, 2007-2008, (c) diamond, 2009, (c) dunkaist, 2011-2012 ///////;;
3
;;================================================================================================;;
3
;;================================================================================================;;
4
;;                                                                                                ;;
4
;;                                                                                                ;;
5
;; This file is part of Common development libraries (Libs-Dev).                                  ;;
5
;; This file is part of Common development libraries (Libs-Dev).                                  ;;
6
;;                                                                                                ;;
6
;;                                                                                                ;;
7
;; Libs-Dev is free software: you can redistribute it and/or modify it under the terms of the GNU ;;
7
;; Libs-Dev is free software: you can redistribute it and/or modify it under the terms of the GNU ;;
Line 23... Line 23...
23
public @EXPORT as 'EXPORTS'
23
public @EXPORT as 'EXPORTS'
Line 24... Line 24...
24
 
24
 
25
include '../../../../struct.inc'
25
include '../../../../struct.inc'
26
include '../../../../proc32.inc'
26
include '../../../../proc32.inc'
-
 
27
include '../../../../macros.inc'
-
 
28
include '../../../../config.inc'
27
include '../../../../macros.inc'
29
;include '../../../../debug.inc'
Line 28... Line 30...
28
purge section,mov,add,sub
30
purge section,mov,add,sub
29
 
-
 
Line 30... Line 31...
30
include 'libimg.inc'
31
 
Line 31... Line 32...
31
;include '../../../../system/board/trunk/debug.inc'
32
include 'libimg.inc'
32
 
33
 
Line 43... Line 44...
43
include 'xcf/xcf.asm'
44
include 'xcf/xcf.asm'
44
include 'tiff/tiff.asm'
45
include 'tiff/tiff.asm'
45
include 'pnm/pnm.asm'
46
include 'pnm/pnm.asm'
46
include 'wbmp/wbmp.asm'
47
include 'wbmp/wbmp.asm'
Line -... Line 48...
-
 
48
 
-
 
49
include 'scale.asm'
-
 
50
;include 'convert.asm'
-
 
51
;include 'transform.asm'
47
 
52
 
48
;;================================================================================================;;
53
;;================================================================================================;;
49
proc lib_init ;///////////////////////////////////////////////////////////////////////////////////;;
54
proc lib_init ;///////////////////////////////////////////////////////////////////////////////////;;
50
;;------------------------------------------------------------------------------------------------;;
55
;;------------------------------------------------------------------------------------------------;;
51
;? Library entry point (called after library load)                                                ;;
56
;? Library entry point (called after library load)                                                ;;
Line 2198... Line 2203...
2198
    img.flip         , 'img_flip'         , \
2203
    img.flip         , 'img_flip'         , \
2199
    img.flip.layer   , 'img_flip_layer'   , \
2204
    img.flip.layer   , 'img_flip_layer'   , \
2200
    img.rotate       , 'img_rotate'       , \
2205
    img.rotate       , 'img_rotate'       , \
2201
    img.rotate.layer , 'img_rotate_layer' , \
2206
    img.rotate.layer , 'img_rotate_layer' , \
2202
    img.draw         , 'img_draw'         , \
2207
    img.draw         , 'img_draw'         , \
-
 
2208
    img.scale        , 'img_scale'        , \
2203
    img.formats_table, 'img_formats_table'
2209
    img.formats_table, 'img_formats_table'
Line 2204... Line 2210...
2204
 
2210
 
2205
; import from deflate unpacker
2211
; import from deflate unpacker
2206
; is initialized only when PNG loading is requested
2212
; is initialized only when PNG loading is requested