Tagged Questions
0
votes
1answer
23 views
Missing SDL library?
So, I recently made a project on ubuntu 32 bit, using SDL libraries. But I want to use RAX etc. registers so I installed 64 bit, but I am getting error about missing SDLs.
Error:
...
0
votes
1answer
33 views
SDL “dropping” initial event?
I'm programming things with SDL 1.2 on Ubuntu 12.04. SDL appears to "drop" the first event given to the event loop. For example, if I were to check for quitting the game via the "x" box, and I click ...
0
votes
0answers
85 views
SDL_Flip deadlock
In my application, I've got a simple Execute method that runs the application,
greatly simplified, it looks something like this:
App::Execute()
{
Initialize();
SDL_Event event;
...
1
vote
1answer
73 views
“Init kbd” in putty when wirking with SDL
I am trying to execute some code having SDL_Event.
I use Ubuntu CLI on VMware then the code works fine, but when i try to execute the code using putty it is giving me a message "init kbd".
code is ...
0
votes
0answers
21 views
SDL_keysym.h not resolving
I am having issues with a SDL+OpenGL+Eclipse setup in Linux (Linux Mint / Ubuntu / Debian to be specific). Among other issues, my IDE cannot find SDL_keysym.h. I have checked that all relevant ...
0
votes
1answer
198 views
Ubuntu SDL program
I'm creating a program in C++ with SDL and I need to make a message appear box when I press a key. My code create a window and can capt when I press a key. Here is what already have:
#include ...
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, ...
0
votes
0answers
680 views
eclipse + SDL on ubuntu - can't make it work
i have the latest official ubuntu release (11.10) and the latest official eclipse release (Indigo Service Release 2).
i need to install both SDL on eclipse and start working on it for android , but ...
4
votes
1answer
3k views
Ubuntu 11.10: GCC/G++ won't link libraries
I went to compile a project of mine, which uses SDL, SDL_ttf, OpenAL, and GTK. All of which are outputting errors like the following:
TxtFunc.cpp:(.text+0x61): undefined reference to `TTF_OpenFont'
...
0
votes
1answer
98 views
SDL: Listmodes only returning 640 x 480
I'm trying to get a new SDL application running on Ubuntu 11.10 and am having issues with getting higher resolutions working with SDL.
After try several different modes, it seems that only 640 x 480 ...
4
votes
2answers
3k views
SDL.h: No such file or directory
I've installed libsdl 1.2 -dev on my Ubuntu but the problem is that it doesn't understand
#include<SDL.h>
And it says:
SDL.h: No such file or directory
But when i type:
kit0n@ubuntu:~$ g++ ...
0
votes
2answers
406 views
C++ Segmentation Fault Only External to Eclipse
I have developed a C++ application in Eclipse. When run outside of Eclipse, it takes a segmentation fault after a consistent number (4) of user actions. It did not seem like anything special at first. ...
1
vote
2answers
916 views
Sdl_image cannot find my jpg image; Won't load
I am currently using the Code::Blocks IDE, c++, opengl and SDL to make a game- and I have hit a severe block in road, if you will. I am using SDL_image to load these jpg images for the textures, but ...
1
vote
1answer
491 views
SDL/opengl multisampling not working
I'm trying to do multisampling with SDL/opengl but SDL won't accept setting SDL_MULTISAMPLEBUFFERS and SDL_MULTISAMPLESAMPLES. Instead these are left at 0 and SDL_SetVideoMode() will fail afterwards. ...
1
vote
1answer
586 views
Per Pixel 2D circular collision Detection in SDL
Alrighty well straight to it, I'm using this guide as I learn SDL and I'm having difficulties with the per pixel collision part. My implementation to this is slightly different to the guides and it is ...
4
votes
4answers
4k views
How to handle multiple keypresses at once with SDL?
been getting myself familiar with OpenGL programming using SDL on Ubuntu using c++. After some looking around and experimenting I am starting to understand. I need advice on keyboard event handling ...
1
vote
2answers
801 views
New to SDL OpenGL on Linux, whats wrong with this?
I have written some code to experiment with opengl programming on Ubuntu, its been a little while but I used to have a reasonable understanding of C. Since c++ i'm told is the language of choice for ...
0
votes
2answers
2k views
OpenGL/SDL problem in Ubuntu
I have a C-code which I have not managed to run
http://dl.getdropbox.com/u/175564/problem-sdl.png
The problem is in OpenGL or SDL.
I do not have SDL.h at /usr/local/SDL/SDL.h, so gcc cannot find it.
...
0
votes
1answer
329 views
ubuntu trouble with SDL
I'm trying to learn to use SDL for a little game I'm writing , but I have a problem . One single application can play sound at a given time on my system . If for example I have amarok or kaffeine ( or ...
