Re: [ab] util-sdl-lisp function clear-screen

2006-05-25 Thread Luke J Crook
> > 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

Re: [ab] util-sdl-lisp function clear-screen

2006-05-24 Thread Justin Heyes-Jones
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

Re: [ab] util-sdl-lisp function clear-screen

2006-05-24 Thread Rune Nesheim
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

Re: [ab] util-sdl-lisp function clear-screen

2006-05-23 Thread Luke J Crook
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