SDL - Simple DirectMedia Layer is a cross-platform multimedia library designed to provide low level access to audio, keyboard, mouse, joystick, 3D hardware via OpenGL, and 2D video framebuffer. It is used by MPEG playback software, emulators, and many popular games, including the award winning Linux ...
5
votes
0answers
483 views
unresolved external symbol using GLEW, SDL and OpenGL in VIsual studio 2010 express
I'm using this OpenGL tutorial. I used SDL for the creation of my window and now i need to use glew (see the One more thing section on the bottom of the tutorial). But whatever i link, include, copy ...
4
votes
0answers
132 views
Compile SDL with cabal in MinGW
I’m trying to install SDL within cabal for Haskell, in MinGW, but I got some problems. cabal can’t find the C library, and I don’t know why. Here some info:
I have downloaded both the dev and ...
4
votes
0answers
355 views
SDL: how to stop audio - not resume, which SDL_PauseAudio(1) does actually?
Developing iOS application which uses CoreAudio framework, I am dealing with IMHO nonsense behavior of SDL reg. playing audio. SDL plays audio in loop, and only way how to trigger playback is to call ...
3
votes
0answers
257 views
Game Center not showing in Fullscreen (MacOS / xcode)
I'm developing a MacOS application.
Since Mountain Lion (10.8) it is possible to add Game Center to OS X applications.
I've added one, tested it, and it works fine, but only in windowed mode. If I go ...
3
votes
0answers
564 views
Segmentation fault when trying to use SDL + GLEW
I'm attempting to learn how to use SDL with OpenGL using GLEW for the extension methods. As far as I can tell from pages such as Using OpenGL with SDL from SDL corner the following code should work
...
2
votes
0answers
34 views
Haskell SDL-mixer compilation error
I am trying to install the SDL-mixer haskell package by using "cabal install sdl-mixer".
When I do so, it gives the error
Resolving dependencies...
[1 of 1] Compiling Main ( ...
2
votes
0answers
47 views
Awesomium custom SDL Surface not working
I'm trying to make a custom Surface class for awesomium to blit to a regular SDL window. Awesomium claims that their pixel format is BGRA ...
2
votes
0answers
141 views
SDL Putting pixels on the screen C++
I am starting with SDL, and I was reading the introduction, and I am trying the drawPixel method they have. What I am doing is a ppm viewer, so far I have the rgb values in an array and are correctly ...
2
votes
0answers
92 views
SDL2 on Android, how to catch onResume events?
I'm trying to makes some project with simply SDL2 on Android.
I've first tried to compile the example given in the archive tesgesture.c, you can see the code here.
It works fine on my Android phone, ...
2
votes
0answers
250 views
Building SDL2 with NDK toolchain
I wonder if anyone did managed to build the fresh SDL2 with the toolchain of the Android NDK(r8d).
SDL2 seems to be very close to the release (since yesterday it isn't "UNDER CONSTROCTION anymore: ...
2
votes
0answers
182 views
Choosing a cross-platform graphics library for perfect text rendering
I want to write a simple text editing application in c/c++ ( mainly devoted to source code editing ) with these specifications:
cross-platform ( Windows, OS X, Linux )
with the as much as possible ...
2
votes
0answers
117 views
SDL: in non-fullscreen mode finding maximum window size
I have an application that does not run in full-screen mode.
After SDL_init I execute SDL_SetVideoMode(0, 0, SDL_OPENGL | SDL_HWSURFACE | SDL_ASYNCBLIT). From what I read, this should allocate a ...
2
votes
0answers
196 views
SDL video rendering failed on iPhone
I am trying to use the SDL library on my iPhone app which plays video streaming media. But I have had a hard time with how SDL works on the iPhone.
After I downloaded the SDL Library via the SDL ...
2
votes
0answers
1k views
Compiling C/C++ application using SDL in OS X, linking problem
I'm trying to compile a C/C++ program that uses SDL on a OS X 10.6.8 but I'm having some errors on the linking stage, the code compiles but fails to like due to some missing symbols. The error is:
...
2
votes
0answers
386 views
openAL looping cycle error
im trying to play a looping sound in openGL/SDL with openAL but when im calling it its just looping infinitely and its stuck at the start ive got no idea how to fix this so i came here hoping some1 ...
2
votes
0answers
892 views
compiling android SDL from libsdl.org ant install fails with BUILD FAILED
Help! I've been trying to compile & test the recent SDL (1.3) port from libsdl.org
(found here: http://www.libsdl.org/tmp/android-project.zip)
steps
cd android-project
ndk-build
ant install
sh ...
1
vote
0answers
20 views
SDL event sequences on wheel movement
I am new to SDL and I am maintaining an SDL application. I want to know which (and how) events are delivered when the user play with the wheel. In my app the user modify the size of a little square on ...
1
vote
0answers
30 views
Check for window dimensions in PyGame / SDL
Is there another way to get the window's dimensions other than pygame.display.Info() or the surface pygame.display.set_mode() returns?
I'm developing a piece of software with resizable window. While ...
1
vote
0answers
53 views
how to use sdl gui (SDL_SetVideoMode,…) in android?
I am planning to use the SDL library in order to render some video streaming in the android screen .
For that i started by cross compiling the sdl library for the android ICS version.
Then i created ...
1
vote
0answers
33 views
How can I force SDL_Init() to fail?
Is there a way to reliable force SDL_Init() to fail for use in a test case?
1
vote
0answers
47 views
gcc -nostdlib causes segmentation fault within SDL_OpenAudio()
When I compile the following code with gcc -nostartfiles or -nostdlib, running the resulting Program causes a crash deep within the Audio system, when SDL_OpenAudio() is called. Without this call ...
1
vote
0answers
37 views
C2660: Function does not take X arguments & C2061 syntax error
main.cpp
#include "g_inc.h"
#include "Core/window.h"
#include "Core/keyboard.h"
#include "Core/mouse.h"
#include "Core/event.h"
int main(int argc, char *argv[])
{
Window game_window;
FPS ...
1
vote
0answers
131 views
OpenCL + SDL 2.0 (with OpenGL context) crash on SDL_Quit()
If I call clGetPlatformIDs and directly after it SDL_Quit(), the program crashes (segfault). The OpenGL version doesn't seem to matter at all (tried 2.1, 3.1, 3.2, 3.3). The operating system is Fedora ...
1
vote
0answers
49 views
Using SDL with XCode 4.4
I am trying to use XCode 4.4 to run SDL but am running into problems. I followed the directions exactly from this site http://www.lazyfoo.net/SDL_tutorials/lesson01/mac/xcode/index.php but it did not ...
1
vote
0answers
116 views
Using SDL with xCode 4.5
I know there are several questions regarding this. I have looked through them all but still haven't found an answer.
I'm trying to use SDL with xCode on my Mac. I'm using xCode 4.5
I followed this ...
1
vote
0answers
156 views
SDL 1.3/2.0 setting up
I have been using sdl 1.2 for the past several months(On windows).I am thinking about migrating to 1.3. So I used cmake and codeblocks to create the static and dynamic libray.now I am confused how to ...
1
vote
0answers
320 views
SDL library for iOS
I'm try to using SDL 2 for iOS application. I'm build the libSDL2.a and add it to the my project. Also I'm add an all headers to application project.
For initialization I'm use next code:
/* ...
1
vote
0answers
184 views
SDL/C IMG_Load triggers 0xc000007b error
I'm following the LazyFoo's SDL Tutorial with C (not CPP) and I'm stuck at the part where I switch from SDL_LoadBMP() to IMG_Load(). The function
SDL_Surface *load_image(char *filename) {
...
1
vote
0answers
133 views
Compile SDL in Cygwin using g++
So for school I made a simple game using the SDL graphics library, and did it in Visual Studios C++. However, I must turn in the source code so that it will compile through Cygwin. I have tried so ...
1
vote
0answers
82 views
Can I somehow combine SDL and Android Java UI elements?
I have an application which renders video in, say, 3 areas of the screen. In each area it renders a different video.
What I am doing is: I'm decoding the frames for all the 3 videos using NDK then ...
1
vote
0answers
210 views
3D sound with SDL_Mixer by using HRTFs (head related transfer function)
I'm trying to make 3D sound with the SDL_Mixer lib by making a convolution of the audio stream with a HRTF (I'm using the MIT HRTF database respectively the mit_hrtf_lib based on the compact dataset). ...
1
vote
0answers
26 views
Same code, Same SDK, Same LIBSDL version, Same GCC version with different results (PPC vs Intel)
I have compiled BlueMSX for a Powerbook G4 using Leopard just fine using 10.5 and 10.4 SDKs. Then, I took the same source code and makefile and tried the same on an Intel Mac running Lion. Only ...
1
vote
0answers
70 views
Getting data during play. OpenAL
Is it possible to get sound data during playing in OpenAl? For example: I generate white noise and I want to present this in graphically in chart amplitude and frequency. So I want to get which part ...
1
vote
0answers
134 views
CMake - SDL - Statically linked
I have an application that I build on both windows and linux using cmake. I want to distribute my linux version, but can't find a way via cmake to make it statically compile/include SDL. I'd rather ...
1
vote
0answers
126 views
Font rendering Bug in SDL .NET? Or just my code?
/// <summary>
/// Simple UI TextBox Class. For displaying messages in 2D Games
/// </summary>
class TextBox
{
/// <summary>
/// Constructor.
/// </summary>
/// ...
1
vote
0answers
230 views
SDL_ttf and OpenGL resizing, getting artifacts on text edges
I'm using SDL_ttf for rendering text with OpenGL. However, I'm getting nasty artifacts at edges of text:
Here's the code:
#include <string>
#include "SDL.h"
#include "SDL_opengl.h"
#include ...
1
vote
0answers
134 views
C++ Dot Product Variable Calculation Error
i have been working on a Pong game in c++ and SDL.
Up to now, i have discovered a critical problem in the computation
of the angle between two vectors in order to obtain collision.
the following code ...
1
vote
0answers
559 views
How to wrap C structs in Cython for use in Python?
For a bit of learning experience, I'm trying to wrap a few parts of SDL (1.2.14) in Cython in an extension for Python 3.2.
I am having a problem figuring out how to wrap C structs straight into ...
1
vote
0answers
145 views
Initializing SDL_Mixer gives error “No available audio device”
I am working on a C++ application which uses SDL/SDL_Mixer to play wav files. I've been developing the application on a Mac without much problem. However, I do need this application to work on Linux, ...
1
vote
0answers
177 views
How to rewrite NEW and DELETE for memory management using SDL, OpenGL together?
I´m using SDL and OpenGL together.
I would like to create my own memory manager, just to rewrite the NEW and DELETE commands to add my memory reservation counter and memory reserved counter to keep ...
1
vote
0answers
130 views
Installing the SDL (Simple DirectMedia Layer) C library on the mac
How do you install the C library SDL on a mac. I would like to be able to use it with the IDE Code::Blocks. The compiler I am using is g++.
1
vote
0answers
154 views
Close the program when the user presses the 'X' button with SDL
I am trying to make the program close when the user presses the 'X' button, it works fine using
SDL_Event Events;
while (Run)
{
while (SDL_PollEvent(&Events))
{
if (Events.type ...
1
vote
0answers
187 views
using console as input in windows GUI application
I am using SDL to create a window, and draw in it with cairo. I am using std::cerr as debug output, which is shown in a default console ( -mconsole) and would like to be able to input debug commands ...
1
vote
0answers
145 views
Android SDL13: Center screen (Using Android 2.3.3)
I want to use the compatibility mode. Thus every device displays at 480x320.
SDL does left align the screen always. But for larger screens like tablets it really makes sense
to center the screen.
...
1
vote
0answers
398 views
SDL_SetVideoMode in Android NDK
I'm about to port a existing game that allready uses the SDL libary to android with the NDK, but the application crashs when calling this(SDL_Init runs fine, SetVideoMode crashes):
if ...
1
vote
0answers
303 views
OpenGL headless rendering
I'd like to render with OpenGL to raw pixel data. Currently, I create a window of the appropriate resolution with SDL, render to it normally, and then save the pixels using glReadPixels. However, if ...
1
vote
0answers
263 views
SDL : blitting time optimization
I'm using SDL in windowed mode.
Given a large sprite, say 1024 x 640, is it faster to blit the entire image into severals small tiles, say 32 x 32 px, than to blit the whole image at once ?
I have ...
1
vote
0answers
381 views
GL3W causes errors in texture loading
When I use GL3W, I cannot load textures. They appear blank or messed up.
I wanted an OpenGL 4.2 context in SDL 1.3 and so I decided to use GL3W, as GLEW used deprecated functions. Everything seems to ...
1
vote
0answers
392 views
How to switch from Stereo to mono
I'm using SDL and FFMPEG to decode audio. my test file has combination of Stereo and mono channels. When i try to play the audio file the stereo part will play, but my application fails to play when ...
1
vote
0answers
105 views
SDL: I have 8 images, and some css rules, how to create a button?
So I have 8 images that I use in my web player as backgrounds for difrent button states.
I also have something alike CSS file with scaleGrid declarations for correct resize:
/* CSS file */
...
