Date: Wed, 26 Jan 2005 13:37:09 GMT

From: Peter Naulls
Subject: RISC OS SDL Patches

Sam, I've attached a diff of the latest changes to libSDL for RISC OS
support.  These changes are by Alan Buckley and myself.

The most significant of these are:

  Optimised assembler blit rountines - I've attached the file
   src/video/riscos/SDL_riscosASM.s which is needed for this.

  Move to using /dev/dsp instead of its own audio implementation.
  This means that src/audio/riscos/SDL_drenderer.c should be removed

  Typo fixes.  Mainly correct spelling of "RISC OS", but some from elsewhere
  too.

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401036
This commit is contained in:
Sam Lantinga 2005-02-12 18:01:31 +00:00
parent 3a0261fdf5
commit a0f696ddfa
22 changed files with 396 additions and 524 deletions

View file

@ -27,7 +27,7 @@ static char rcsid =
/* Get the name of the audio device we use for output */
#if defined(unix) || defined(__unix__)
#if defined(unix) || defined(__unix__) || defined(__riscos__)
#include <stdlib.h>
#include <stdio.h>