File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 662
662
(sheight (/ (send self :height ) 2 )))
663
663
(if (null simage)
664
664
(setq simage (instance class :init swidth sheight)))
665
- (halve-image self simage pixel-bytes)
665
+ ; ;(halve-image self simage pixel-bytes)
666
+ (halve-image self simage) ; ; inaba 2018.11.16
666
667
simage))
667
668
(:double (&optional (simage)) ; 256x256 -> 512*512
668
669
(let* ((swidth (* (send self :width ) 2 ))
669
670
(sheight (* (send self :height ) 2 )))
670
671
(if (null simage)
671
672
(setq simage (instance (class self) :init swidth sheight)))
672
- (double-image self simage pixel-bytes)
673
- simage))
673
+ ; ; (double-image self simage pixel-bytes)
674
+ (double-image self simage) ; ; inaba 2018.11.16
675
+ simage))
674
676
(:display (&optional (xw geometry :*viewsurface* ) (x 0 ) (y 0 ))
675
677
(let ((bpp (send xw :depth )))
676
678
(case bpp
You can’t perform that action at this time.
0 commit comments