IrisRGBReader.st
changeset 919 d0e28bc28b25
parent 883 5e3c3d895f7d
child 1745 4fa0fad2a463
--- a/IrisRGBReader.st	Mon May 11 22:50:54 1998 +0200
+++ b/IrisRGBReader.st	Mon May 11 22:56:57 1998 +0200
@@ -149,7 +149,7 @@
     "read RLE compressed data"
 
     |rleBufferLen tableLen startTable lengthTable rleData
-     cur badOrder y z pos tblIdx dstIdx|
+     tblIdx dstIdx|
 
     rleBufferLen := width * 2 + 10.
     tableLen := height * bytesPerPixel.
@@ -211,8 +211,8 @@
     "return true, if anImage can be represented in my file format.
      Currently only B&W and Depth8 images are supported."
 
-    |depth|
-
+"/    |depth|
+"/
 "/    anImage photometric == #rgb ifTrue:[
 "/        ^ false  "/ not yet implemented
 "/    ].
@@ -227,6 +227,6 @@
 !IrisRGBReader class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/IrisRGBReader.st,v 1.6 1998-04-01 12:29:04 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/IrisRGBReader.st,v 1.7 1998-05-11 20:56:57 tz Exp $'
 ! !
 IrisRGBReader initialize!