>
> sdl.lisp is the bare wrapper
> util.lisp holds useful utils but nothing particularly rich, just a few
> things that are done to make things easier from lisp (with-events for
> example)
>
I would agree. In lispbuilder-openrm there is an additional layer,
"translate.lisp", that contains the
On 5/24/06, Rune Nesheim <[EMAIL PROTECTED]> wrote:
On 5/24/06, Luke J Crook <[EMAIL PROTECTED]> wrote:> There are a whole set of functions in util-sdl that do almost the same> thing:> I left all of these in as I feel that the group will want to provide
> feedback and settle on:> - a) Either a sub
On 5/24/06, Luke J Crook <[EMAIL PROTECTED]> wrote:
> There are a whole set of functions in util-sdl that do almost the same
> thing:
> I left all of these in as I feel that the group will want to provide
> feedback and settle on:
> - a) Either a subset of these functions/macro, or
> - b) The cr
Rune Nesheim writes:
> (defun clear-screen (surface &rest args)
> (apply #'draw-filled-rectangle surface 0 0
> (surf-w surface)
> (surf-h surface)
> 0 0 0 args)
> surface)
>
> Why is this function called clear-screen and not clear-surface?
> If I'm not mistaken it