forked from KolibriOS/kolibrios
libimg:
1. tiff (baseline) support 2. pnm (portable anymap) bilevel, grayscale (8bpp), pixmap (24bpp) support 3. xcf: optional layer merging/blending with sse (default is mmx) 4'. new formatting for my old code. more readable for now git-svn-id: svn://kolibrios.org@2388 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
;;================================================================================================;;
|
||||
;;//// pcx.inc //// (c) dunkaist, 2010 ///////////////////////////////////////////////////////////;;
|
||||
;;//// pcx.inc //// (c) dunkaist, 2010,2012 //////////////////////////////////////////////////////;;
|
||||
;;================================================================================================;;
|
||||
;; ;;
|
||||
;; This file is part of Common development libraries (Libs-Dev). ;;
|
||||
@@ -17,21 +17,21 @@
|
||||
;; ;;
|
||||
;;================================================================================================;;
|
||||
|
||||
struct pcx_header
|
||||
magic_number rb 1
|
||||
version rb 1
|
||||
encoding rb 1
|
||||
bpp rb 1
|
||||
xmin rw 1
|
||||
ymin rw 1
|
||||
xmax rw 1
|
||||
ymax rw 1
|
||||
hres rw 1
|
||||
vres rw 1
|
||||
colormap rb 48
|
||||
reserved rb 1
|
||||
nplanes rb 1
|
||||
bpl rw 1
|
||||
palette_info rw 1
|
||||
filler rb 58
|
||||
ends
|
||||
struct pcx_header
|
||||
magic_number rb 1
|
||||
version rb 1
|
||||
encoding rb 1
|
||||
bpp rb 1
|
||||
xmin rw 1
|
||||
ymin rw 1
|
||||
xmax rw 1
|
||||
ymax rw 1
|
||||
hres rw 1
|
||||
vres rw 1
|
||||
colormap rb 48
|
||||
reserved rb 1
|
||||
nplanes rb 1
|
||||
bpl rw 1
|
||||
palette_info rw 1
|
||||
filler rb 58
|
||||
ends
|
||||
|
Reference in New Issue
Block a user