<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.comp.lib.sdl">
    <title>gmane.comp.lib.sdl</title>
    <link>http://blog.gmane.org/gmane.comp.lib.sdl</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.sdl/56458"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.sdl/56448"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.sdl/56443"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.sdl/56418"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.sdl/56417"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.sdl/56399"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.sdl/56394"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.sdl/56381"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.sdl/56372"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.sdl/56369"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.sdl/56367"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.sdl/56364"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.sdl/56363"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.sdl/56355"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.sdl/56340"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.sdl/56339"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.sdl/56337"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.sdl/56331"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.sdl/56328"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lib.sdl/56324"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.sdl/56458">
    <title>SDL2_Mixer on OSX problems, smpeg looking for SDL.framework</title>
    <link>http://comments.gmane.org/gmane.comp.lib.sdl/56458</link>
    <description>&lt;pre&gt;I am using SDL2.framework and SDL2_mixer framework built from hg from
about 1-2 months ago.  (Not sure if I have the fluidsynth patches, but
I have the others).  When running a compiled program, smpeg is looking
for  SDL.framework on the rpath.

Dyld Error Message:
  Library not loaded: &amp;lt; at &amp;gt;rpath/SDL.framework/Versions/A/SDL
  Referenced from:
/Library/Frameworks/SDL2_mixer.framework/Versions/A/Frameworks/smpeg.framework/Versions/A/smpeg
  Reason: image not found

SDL2.framework [6302?] and SDL2_mixer [Dated Feb5] framework were
compiled via XCode on OSX SnowLepard.
my project was compiled on linux, using the toolchain noted at
http://nathancoulson.com/proj_cross.php#x86_64-apple-darwin10 (I
should update those notes...)

&lt;/pre&gt;</description>
    <dc:creator>Nathan Coulson</dc:creator>
    <dc:date>2012-05-26T18:47:29</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.sdl/56448">
    <title>work in progress: a simple library to render dynamic text</title>
    <link>http://comments.gmane.org/gmane.comp.lib.sdl/56448</link>
    <description>&lt;pre&gt;Check out http://lackeyccg.com/code/ for a user-friendly way to render dynamic text.

http://lackeyccg.com/code/MainREADME.cpp explains how it works.

This is a work in progress and feedback is appreciated. You should be able to very easily incorporate the text drawing functions in any SDL/SDL_ttf equipped project, or at least that is the goal.




_______________________________________________
SDL mailing list
SDL&amp;lt; at &amp;gt;lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org
&lt;/pre&gt;</description>
    <dc:creator>Trev</dc:creator>
    <dc:date>2012-05-26T12:16:50</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.sdl/56443">
    <title>Problem with SDL SDL_RWops "magic" for Android</title>
    <link>http://comments.gmane.org/gmane.comp.lib.sdl/56443</link>
    <description>&lt;pre&gt;Hi all,

Finally gathered up the courage to give music streaming on Android another
try. On Android SDL_RWFromFile cleverly reads from the APK archive's assets
folder via the JNI. This is great, but for streaming music it's a problem
because it's not thread-safe. This shouldn't surprise anyone: streaming
data from a zip file, through java, the JNI, SDL, SDL_mixer... it's a
recipe for disaster. As a result I'm exporting the files I want to stream
to the sdcard first, then streaming them (safely) from there.

At least that's the idea. Trouble is Mixer_LoadMUS itself calls upon
SDL_RWFromFile, hence Mixer_LoadMUS("/sdcard/data/music.ogg") calls
SDL_RWFromFile("/sdcard/data/music.ogg") which, unless I've very much
mis-read the situation, goes looking for "/sdcard/data/music.ogg" in the
assets folder of the APP (?). The code that does this trick is *line 448 of
SDL_rwops.c

**#if defined(ANDROID)
    rwops = SDL_AllocRW();
    if (!rwops)
        return NULL;            /* SDL_SetError already setup by
SDL_AllocR&lt;/pre&gt;</description>
    <dc:creator>William Dyce</dc:creator>
    <dc:date>2012-05-25T23:12:02</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.sdl/56418">
    <title>iPad keyboard with SDL2?</title>
    <link>http://comments.gmane.org/gmane.comp.lib.sdl/56418</link>
    <description>&lt;pre&gt;Is there any way to control and interact with the keyboard GUI on the iPad/iPhone with SDL2? It would be cool if there was a function to show and hide it, and when text is entered for some sort of SDL_KeyboardEvent to be triggered. But I couldn't find any current way to do this via SDL2.

I suppose I could implement my own keyboard GUI, but that seems like reinventing the wheel.
I suppose I could use some non-SDL code to show/hide the keyboard, but it would be cool if these were more closely integrated with SDL somehow so all iPad/iPhone developers had a standardized way to implement keyboard functionality.




_______________________________________________
SDL mailing list
SDL&amp;lt; at &amp;gt;lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org
&lt;/pre&gt;</description>
    <dc:creator>Trev</dc:creator>
    <dc:date>2012-05-25T03:09:11</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.sdl/56417">
    <title>SDL2 + OpenGL+ SDL_ttf and rendering text question</title>
    <link>http://comments.gmane.org/gmane.comp.lib.sdl/56417</link>
    <description>&lt;pre&gt;I am porting my program from mac/windows to the iPad. Up until now, I have been using the GLUT functions for drawing text, such as:
glutBitmapCharacter (GLUT_BITMAP_HELVETICA_10,theString[i]);

But those functions are not supported on the iPad, so I am trying to use SDL_ttf for text.

There are 2 examples that demonstrate SDL_ttf.
http://lackeyccg.com/glfont.c shows how things are done with OpenGL.
http://lackeyccg.com/showfont.c shows how things are done with just SDL.
I'm not sure what is the better method for my uses.

I am using text for essentially 3 kinds of uses:

Labels for things like buttons and menus.
[img]ühttp://lackeyccg.com/SDL_ttfNonDynamicText.jpg[/img]

Text for text fields.
ü[img]ühttp://lackeyccg.com/SDL_ttfDynamicText.jpg[/img]

And text labels that appear in 3D space. (The text itself is flat, but it appears in 3D OpenGL space.)
üü[img]ühttp://lackeyccg.com/SDL_ttf3DText.jpg[/img]

If I understand things correctly, with SDL_ttf, fonts are loaded and then you can use those fonts to&lt;/pre&gt;</description>
    <dc:creator>Trev</dc:creator>
    <dc:date>2012-05-25T02:56:30</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.sdl/56399">
    <title>Feature of SDL</title>
    <link>http://comments.gmane.org/gmane.comp.lib.sdl/56399</link>
    <description>&lt;pre&gt;Hello guys

I think its time for a discussion to be made regarding the future of
SDL.From what i understand its almost ready for at least a Beta
release but no one is willing to fix remaining bugs.How do you think
this project shall continue? If Sam or Ryan don't have time to work on
the project any more, maybe its better to start thinking of ways to
continue the project in another way.It really makes me sad looking at
SDL not going forward any more.Sam,Ryan, What do you think?

Best Regards
Dimitris Zenios

p.s:I would like to here everybodys thoughts regarding this matter.
&lt;/pre&gt;</description>
    <dc:creator>Dimitris Zenios</dc:creator>
    <dc:date>2012-05-23T21:50:24</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.sdl/56394">
    <title>SDL2 does not compile</title>
    <link>http://comments.gmane.org/gmane.comp.lib.sdl/56394</link>
    <description>&lt;pre&gt;I have the same problem as in this thread: https://bbs.archlinux.org/viewtopic.php?id=137822

I hope this can be corrected.




_______________________________________________
SDL mailing list
SDL&amp;lt; at &amp;gt;lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org
&lt;/pre&gt;</description>
    <dc:creator>shad0w</dc:creator>
    <dc:date>2012-05-23T14:52:03</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.sdl/56381">
    <title>SDL Threaded Input</title>
    <link>http://comments.gmane.org/gmane.comp.lib.sdl/56381</link>
    <description>&lt;pre&gt;In a standard SDL Event loop, you poll events, then do some logic processing.

There was a patch a few months ago that added "timestamp" to the
SDL_Event structure.  Has anyone looked into using it to get more
precise input events?  It looks like it is set when the event is
created (when SDL_PumpEvents is called).

Would the best approach be multithreading, splitting the event
handling from the video handling?  From the wiki, it looks like
SDL_PumpEvents has to be called from the same thread that initialized
the graphics.


Nathan Coulson, Dreaming of keyboard input with more precision then the fps.
------
Location: British Columbia, Canada
Timezone: PST (-8)
Webpage: http://www.nathancoulson.com
&lt;/pre&gt;</description>
    <dc:creator>Nathan Coulson</dc:creator>
    <dc:date>2012-05-21T06:55:42</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.sdl/56372">
    <title>Cant setup SDL_ttf</title>
    <link>http://comments.gmane.org/gmane.comp.lib.sdl/56372</link>
    <description>&lt;pre&gt;Hello List,

tried to setup SDL_ttf many times cant get any real effort.
System VISTA64/MinGW/msys
SDL_mixer works.

Cant get FreeType to be installed.


_______________________________________________________-
output

$ make -f arch/win32/Makefile.gcc
make -C ../lib -f arch/win32/Makefile.gcc all
make[1]: Entering directory `/c/SDLtut/freetype-1.3.1/lib'
make -f arch/win32/Makefile.gcc LIB_FILES=OBJS_S libttf.a
make[2]: Entering directory `/c/SDLtut/freetype-1.3.1/lib'
gcc -Wall -ansi -pedantic -O2 -s -Iarch/win32 -I. -Iextend -DNO_GETTEXT -c -o arch/win32/freetype.o arch/win32/freetype.c
gcc -Wall -ansi -pedantic -O2 -s -Iarch/win32 -I. -Iextend -DNO_GETTEXT -c -o extend/ftxgasp.o extend/ftxgasp.c
gcc -Wall -ansi -pedantic -O2 -s -Iarch/win32 -I. -Iextend -DNO_GETTEXT -c -o extend/ftxkern.o extend/ftxkern.c
gcc -Wall -ansi -pedantic -O2 -s -Iarch/win32 -I. -Iextend -DNO_GETTEXT -c -o extend/ftxpost.o extend/ftxpost.c
gcc -Wall -ansi -pedantic -O2 -s -Iarch/win32 -I. -Iextend -DNO_GETTEXT -c -o extend/ftxcm&lt;/pre&gt;</description>
    <dc:creator>Lars Brämer</dc:creator>
    <dc:date>2012-05-19T11:32:44</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.sdl/56369">
    <title>Licensing Question</title>
    <link>http://comments.gmane.org/gmane.comp.lib.sdl/56369</link>
    <description>&lt;pre&gt;We're including SDL with a proprietary app and we'd like to make sure
we do this right.

The version we have developed with and would like to include is
labeled as 1.3, hg hash f3c34d3.

Would this fall under LGPL or zlib?

I presume since 1.3 is the dev branch that became 2.0 that it'd be
zlib, but I'd like to be sure.

If this isn't the place to ask this I'd appreciate a push in the
correct direction.

Thanks,
&lt;/pre&gt;</description>
    <dc:creator>Andrew Tarzwell</dc:creator>
    <dc:date>2012-05-18T19:47:57</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.sdl/56367">
    <title>How to install the required components in Linux without rootpermission?</title>
    <link>http://comments.gmane.org/gmane.comp.lib.sdl/56367</link>
    <description>&lt;pre&gt;Hi,

I have some stupid question as following, please feel free to correct me if
any inappropriate.

1. how to install sdl 1.2 for developing application using sdl, which parts
is required?
   source code?
   Runtime Libraraies?
   Development Libraries?

2. On a linux server, I don't a root permission, can I install them in my
local directory? I've tried rpm package, which seems to need root
permission because I got the error as "error: can't create transaction lock
on /var/lib/rpm/__db.000". Can I use source code to build a library? I'd
appreciate if you could provide a procedure.

3. How to distribute it? Must it be with runtime libraries?

Thanks,
Joe
_______________________________________________
SDL mailing list
SDL&amp;lt; at &amp;gt;lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org
&lt;/pre&gt;</description>
    <dc:creator>sword9</dc:creator>
    <dc:date>2012-05-18T08:05:06</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.sdl/56364">
    <title>Linking to SDL2 in Ubuntu 10</title>
    <link>http://comments.gmane.org/gmane.comp.lib.sdl/56364</link>
    <description>&lt;pre&gt;Here is my makefile:

CC=g++


So, everything compiles fine except, I get a pile of Undefined reference
SDL_*

sdl2-config --libsd --cflags gives me this output (which appears to be
correct):

-L/usr/local/lib -Wl,-rpath,/usr/local/lib -lSDL2 -lpthread


Any ideas?  I haven't played with SDL2 on Ubuntu before (only mingw and
msvc++)
-Alex
_______________________________________________
SDL mailing list
SDL&amp;lt; at &amp;gt;lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org
&lt;/pre&gt;</description>
    <dc:creator>Alex Barry</dc:creator>
    <dc:date>2012-05-17T17:42:29</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.sdl/56363">
    <title>[patch] SDL1.2/1.3 fix for PS3 SixAxis and other joysticks</title>
    <link>http://comments.gmane.org/gmane.comp.lib.sdl/56363</link>
    <description>&lt;pre&gt;   The Linux joystick driver enumerates all axes up to ABS_MISC but
accepts input for all axes up to ABS_MAX. This causes all axes after
ABS_MISC to be remapped to axis 0, because the abs_map table is
initialised to zero. In practice this makes joysticks such as the PS3
SixAxis gamepad almost unusable.

   As a simple fix I suggest replacing ABS_MISC with ABS_MAX around line
705 in src/joystick/linux/SDL_sysjoystick.c so that all axes including
the accelerometer ones are available.

Cheers,
&lt;/pre&gt;</description>
    <dc:creator>Sam Hocevar</dc:creator>
    <dc:date>2012-05-17T14:59:43</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.sdl/56355">
    <title>(Off Topic) Recommendations for messaging between processes ?</title>
    <link>http://comments.gmane.org/gmane.comp.lib.sdl/56355</link>
    <description>&lt;pre&gt;Hello, I have been writing a game engine for to teach myself about SDL
for quite a while now. The engine has reached a level of complexity
that I feel it would be beneficial to have a external debugging
program to aid in development. More precisely I would like to be able
to pause/unpause the game and track objects [and their variables]
without too much extra coding effort.

I'll probably be writing the debugging application in python, but
thats not terribly relevant to the question. My question is how should
implement inter-process communications ? What libraries could I use to
achieve communication in-between two programs quickly and painlessly ?
(SDL_Net, Sockets, D-Bus, etc ...) Development is almost exclusively
on Linux so I don't care if it would break cross platform
compatibility.

If anyone has some words of wisdom it would be greatly appreciated.

&lt;/pre&gt;</description>
    <dc:creator>Jason White</dc:creator>
    <dc:date>2012-05-16T00:56:08</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.sdl/56340">
    <title>SDL 2.0 Surface to OpenGL Texture</title>
    <link>http://comments.gmane.org/gmane.comp.lib.sdl/56340</link>
    <description>&lt;pre&gt;I know this has been done over and over on the mailing list, and if this is
a more appropriate question for OpenGL, I'll ask over at gamedev.

So, here is my relevant code:

SDL_Surface* newSurface = SDL_CreateRGBSurface(


And here is hope I'm displaying it:

glBegin( GL_QUADS );


All I'm getting is a white box, meanwhile the surfaces I've converting to
opengl textures are text strings using SDL_ttf, and they are giving valid
surfaces.

Also, here is the relevant OpenGL setup code:

glClearColor( 0, 0, 0, 0 );


 Any help would be appreciated,
-Alex
_______________________________________________
SDL mailing list
SDL&amp;lt; at &amp;gt;lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org
&lt;/pre&gt;</description>
    <dc:creator>Alex Barry</dc:creator>
    <dc:date>2012-05-15T04:29:42</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.sdl/56339">
    <title>SDL_mixer: loop support in mod file is broken</title>
    <link>http://comments.gmane.org/gmane.comp.lib.sdl/56339</link>
    <description>&lt;pre&gt;Hi list,

When playing a mod file using Mix_PlayMusic, the loops of the mod file
are ignored, resulting in the music being played incorrectly.

This has been discussed in this forum entry (there is a workaround provided):
http://forums.libsdl.org/viewtopic.php?t=7160

This is due to the 'Jump to order' command being ignored while the
file is being played.
http://www.milkytracker.org/docs/MilkyTracker.html#fxBxx

In my particular case,  my game uses a mod file containing multiple music loops.
Music loops are switched dynamically by the game using
Mix_SetMusicPosition(position), which has the particular behaviour of
setting the pattern being played in the case of a mod file.
Having SDL_mixer ignoring the 'Jump' commands totally breaks the
playback of the music in my case.

The reason for mod playback not supporting loops is that this has been
explicitely disabled in the MOD_new_RW() function of the music_mod.c
file, with the line:
module-&amp;gt;loop    = 0; (see source code below)

Is there any reason for this? I ca&lt;/pre&gt;</description>
    <dc:creator>florent boudet</dc:creator>
    <dc:date>2012-05-15T00:18:51</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.sdl/56337">
    <title>Win 7 Multitouch SDL</title>
    <link>http://comments.gmane.org/gmane.comp.lib.sdl/56337</link>
    <description>&lt;pre&gt;I was wondering if the situation has changed in SDL with regards to touchon W7:
http://www.libsdl.org/tmp/SDL/README.touch

I am currently lined up to add support for multitouch into Blender for
Google Summer of Code, and based on the development interest in SDL I was
hoping I might be able to implement touch through it.

I can test for Wacom (Atmel) and possibly N-trig multitouch devices, for
both Windows 7 and Linux if given instructions.

Nicholas Rishel
_______________________________________________
SDL mailing list
SDL&amp;lt; at &amp;gt;lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org
&lt;/pre&gt;</description>
    <dc:creator>Nicholas Rishel</dc:creator>
    <dc:date>2012-05-14T22:15:34</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.sdl/56331">
    <title>SDL_BlitScaled problems</title>
    <link>http://comments.gmane.org/gmane.comp.lib.sdl/56331</link>
    <description>&lt;pre&gt;Using the latest SDL 2 repository pull.

I'm having some problems with scaled blitting.  I've got an 8-bit, paletted surface, and I'm creating another surface with the same pixel format and the same palette, but twice as large in both dimensions.  I want to blit the old image onto the new one to scale it up.

It's been quite a hassle getting that to work in the first place, since for some inexplicable reason SDL_LowerBlitScaled doesn't seem to like paletted images and redirects me to SDL_LowerBlit instead, but without anything having set up the proper flags for SDL_LowerBlit to work, so what I end up with is no blit taking place because SDL_MapSurface can't find anything that matches the flags.

So I ended up calling SDL_SoftStretch instead, which works just fine... until I tried to composite a second image over the top of it.  It did the stretch-blit but it didn't respect the colorkey, so instead of compositing, I got the second image and that's all.

So how do I get a scaled blit that composites properl&lt;/pre&gt;</description>
    <dc:creator>Mason Wheeler</dc:creator>
    <dc:date>2012-05-12T16:28:09</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.sdl/56328">
    <title>SDL-2.0: Cannot create window</title>
    <link>http://comments.gmane.org/gmane.comp.lib.sdl/56328</link>
    <description>&lt;pre&gt;On a linux machine with Mesa 7.11 installed I just did a fresh checkout of SDL-2.0 from HG.

Ran autogen.sh, configure, and make, sudo make install

I go into tests and do the same.

When I try to run the tests I'm getting this:


Code:
$ ./testgles
Couldn't create window: 



So just for a quick check I fire up glx gears and it runs fine.

I go and check some of my other gles programs and they're getting the same error.

Did I need to do some special configure options to get SDL and GLES to play nice?

.




_______________________________________________
SDL mailing list
SDL&amp;lt; at &amp;gt;lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org
&lt;/pre&gt;</description>
    <dc:creator>greno</dc:creator>
    <dc:date>2012-05-12T04:34:56</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.sdl/56324">
    <title>SDL-2.0: HG configure: error</title>
    <link>http://comments.gmane.org/gmane.comp.lib.sdl/56324</link>
    <description>&lt;pre&gt;When we're checking out SDL-2.0 from HG it would be nice if we could not have this error about generated header files.


Code:
configure: error: 
*** When building from Mercurial you should configure and build in a
    separate directory so you don't clobber SDL_config.h, SDL_revision.h



Generated files generally should not be checked into the VCS.


Right now I have to hack the configure to allow the build.

.




_______________________________________________
SDL mailing list
SDL&amp;lt; at &amp;gt;lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org
&lt;/pre&gt;</description>
    <dc:creator>greno</dc:creator>
    <dc:date>2012-05-11T22:37:14</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lib.sdl/56317">
    <title>SDL_fillrect.c: don't redetect CPU features</title>
    <link>http://comments.gmane.org/gmane.comp.lib.sdl/56317</link>
    <description>&lt;pre&gt;In SIMD-enabled implementations, SDL_FillRect() checks the CPU
features (SDL_HasMMX() / SDL_HasSSE()) every time (which in turn
checks if the CPU features have been detected first, and performs a
detection if necessary) and then branches to the appropriate function.
This is adds a bit of extra overhead that could be otherwise avoided
by the use of function pointers.

This patch adds a table of 4 function pointers in SIMD-enabled builds
that are used instead. When first called, the function pointer directs
to a detection routine that detects the best version, saves that
pointer, then executes it. This removes the extra branch that
typically occurs in code, such as "if(firstTime) setupPointers()",
instead replacing it with a detect-then-execute function.

This is multithread-safe, since at no time does executing a function
pointer produce incorrect results, and two threads executing the
detection at the same time will save the same function pointer into
the same location, guaranteeing identical results as the
&lt;/pre&gt;</description>
    <dc:creator>Patrick Baggett</dc:creator>
    <dc:date>2012-05-10T23:00:32</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.lib.sdl">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.lib.sdl</link>
  </textinput>
</rdf:RDF>

