Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

cl: add fb-width/height/stride/pixels aliases for exported names

defstruct generates framebuffer-width etc but package exports fb-width.
Added alias functions.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+6
+6
fedac/native/cl/framebuffer.lisp
··· 69 69 (setf (cffi:mem-aref (framebuffer-pixels fb) :uint32 off) 70 70 (color-blend src-color dst))))) 71 71 72 + ;;; Convenience aliases matching exported names 73 + (defun fb-width (fb) (framebuffer-width fb)) 74 + (defun fb-height (fb) (framebuffer-height fb)) 75 + (defun fb-stride (fb) (framebuffer-stride fb)) 76 + (defun fb-pixels (fb) (framebuffer-pixels fb)) 77 + 72 78 (defun fb-copy-scaled (src dst-ptr dst-w dst-h dst-stride scale) 73 79 "Copy SRC framebuffer to a foreign memory region at DST-PTR, scaling up by SCALE. 74 80 Used by DRM present to blit the small render buffer to the display."