Subversion Repositories Kolibri OS

Rev

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

Rev 3055 Rev 3499
Line 43... Line 43...
43
include 'pcx/pcx.asm'
43
include 'pcx/pcx.asm'
44
include 'xcf/xcf.asm'
44
include 'xcf/xcf.asm'
45
include 'tiff/tiff.asm'
45
include 'tiff/tiff.asm'
46
include 'pnm/pnm.asm'
46
include 'pnm/pnm.asm'
47
include 'wbmp/wbmp.asm'
47
include 'wbmp/wbmp.asm'
-
 
48
include 'xbm/xbm.asm'
Line 48... Line 49...
48
 
49
 
49
include 'scale.asm'
50
include 'scale.asm'
50
include 'convert.asm'
51
include 'convert.asm'
Line 1924... Line 1925...
1924
  .pcx  dd LIBIMG_FORMAT_PCX,  img.is.pcx,  img.decode.pcx,     img.encode.pcx, 0
1925
  .pcx  dd LIBIMG_FORMAT_PCX,  img.is.pcx,  img.decode.pcx,     img.encode.pcx, 0
1925
  .xcf  dd LIBIMG_FORMAT_XCF,  img.is.xcf,  img.decode.xcf,     img.encode.xcf, 0
1926
  .xcf  dd LIBIMG_FORMAT_XCF,  img.is.xcf,  img.decode.xcf,     img.encode.xcf, 0
1926
  .tiff dd LIBIMG_FORMAT_TIFF, img.is.tiff, img.decode.tiff,    img.encode.tiff,0
1927
  .tiff dd LIBIMG_FORMAT_TIFF, img.is.tiff, img.decode.tiff,    img.encode.tiff,0
1927
  .pnm  dd LIBIMG_FORMAT_PNM,  img.is.pnm,  img.decode.pnm,     img.encode.pnm, 1 + (1 SHL Image.bpp1) + (1 SHL Image.bpp8g) + (1 SHL Image.bpp24)
1928
  .pnm  dd LIBIMG_FORMAT_PNM,  img.is.pnm,  img.decode.pnm,     img.encode.pnm, 1 + (1 SHL Image.bpp1) + (1 SHL Image.bpp8g) + (1 SHL Image.bpp24)
1928
  .wbmp dd LIBIMG_FORMAT_WBMP, img.is.wbmp, img.decode.wbmp,    img.encode.wbmp,0
1929
  .wbmp dd LIBIMG_FORMAT_WBMP, img.is.wbmp, img.decode.wbmp,    img.encode.wbmp,0
-
 
1930
  .xbm  dd LIBIMG_FORMAT_XBM,  img.is.xbm,  img.decode.xbm,     img.encode.xbm, 0
1929
  .z80  dd LIBIMG_FORMAT_Z80,  img.is.z80,  img.decode.z80,     img.encode.z80, 0 ;this must be the last entry as there are no signatures in z80 screens at all
1931
  .z80  dd LIBIMG_FORMAT_Z80,  img.is.z80,  img.decode.z80,     img.encode.z80, 0 ;this must be the last entry as there are no signatures in z80 screens at all
1930
        dd 0
1932
        dd 0
Line 1931... Line 1933...
1931
 
1933
 
1932
align 4
1934
align 4
Line 2159... Line 2161...
2159
;;================================================================================================;;
2161
;;================================================================================================;;
2160
;;////////////////////////////////////////////////////////////////////////////////////////////////;;
2162
;;////////////////////////////////////////////////////////////////////////////////////////////////;;
2161
;;================================================================================================;;
2163
;;================================================================================================;;
Line 2162... Line 2164...
2162
 
2164
 
2163
align 4
2165
align 4
2164
type2bpp    dd  8, 24, 32, 15, 16, 1, 9 ;,16
2166
type2bpp    dd  8, 24, 32, 15, 16, 1, 9;, 2, 4
2165
img._.do_rgb.handlers:
2167
img._.do_rgb.handlers:
2166
    dd  img._.do_rgb.bpp8i
2168
    dd  img._.do_rgb.bpp8i
2167
    dd  img._.do_rgb.bpp24
2169
    dd  img._.do_rgb.bpp24
2168
    dd  img._.do_rgb.bpp32
2170
    dd  img._.do_rgb.bpp32