Tagged Questions
0
votes
1answer
21 views
How can I disable the SDL splash screen?
I'm porting an SDL-based game from Linux to Android, and it's going very smoothly.
However, the Android version displays an SDL splash screen ("Powered by SDL") while initializing, and the Linux ...
0
votes
0answers
51 views
SDL(*).h : No file or directory - But they are present in the include path
I am compiling from src (Lincity-NG) in windows 7 and MinGW. I am sure I have installed all the libs and dependencies. As it './configure's and compiles (partially). Just a side note - I have lincity ...
0
votes
1answer
54 views
Fill_Rect in SDL
I got some question for SDL_FillRect.
normally the function work like that:
SDL_FillRect(screen, &screen->clip_rect, color);
My question is, instead of passing a single color, can I fill up my ...
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 ...
3
votes
1answer
56 views
SDL configuration in Eclipse IDE
I am trying to get a OpenGL code run on Eclipse in Linux x86 environment (ubuntu):
http://nehe.gamedev.net/tutorial/vertex_buffer_objects/22002/
The code would run properly after I input in the ...
1
vote
0answers
133 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 ...
4
votes
1answer
362 views
How to create Alt+Tab friendly fullscreen programs (like games) in Linux?
I want to create an application where I draw on an window, either windowed or fullscreen, where I have the mouse grabbed but without intercepting any WM keyboard shortcuts, like Alt+Tab, and I also ...
1
vote
1answer
116 views
How to get SDL to use fbcon not caca
I am trying to get started using SDL to create a portable and pretty front end that can run under X, or directly from the terminal (hopefully on a rasberry pi at some point) - at the moment I'm on a ...
0
votes
1answer
119 views
glXSwapIntervalSGI segfault
I'm trying to disable vertical sync on Linux in a program built around SDL and openGL. I am running an old integrated ATI card with Gallium 0.4 as the driver.
I attempt to disable vsync by calling ...
1
vote
2answers
175 views
Unrecognised music format to play mp3 file using SDL
#include <SDL/SDL.h>
#include <SDL/SDL_mixer.h>
#include <stdio.h>
#include <stdlib.h>
Mix_Music *play_sound = NULL;
void cleanUp();
int main(int argc, char* args[])
{
...
2
votes
1answer
346 views
SDL+OpenGL working in linux but not windows, NOT COMPILER/LINKER ISSUE
Okay so I have run into a very strange problem regarding a project I've been working on. This project is a 3D-engine(using SDL and openGL for input handling, and graphics respectively). I have been ...
1
vote
3answers
188 views
OpenGL Linux not reading GL_VERSION
I have a simple OpenGL program using SDL on Linux that just attempts to load and print the OpenGL version.
cout << "GL_VERSION : " << glGetString(GL_VERSION) << endl;
When I run ...
0
votes
0answers
110 views
How to create a GTK Text Entries in SDL
I ran into a problem programming a game. SDL does not support IM (Input Method: a program to type Chinese, Japanese, etc.), which is important in Asian countries. I expect to be able to get IM by ...
1
vote
2answers
89 views
SDL mouse range on resize
I am developing a SDL OpenGL application on Ubuntu and have noticed a problem with the mouse range when a new window size is set. The initiale size of my application is 600x400 and the mouse range ...
2
votes
2answers
445 views
How to center a SDL window in Linux?
I was trying to find a way to create a SDL window centered on the screen and I found this code
#ifdef WIN32
#include <SDL_syswm.h>
SDL_SysWMinfo i;
SDL_VERSION( &i.version );
if ( ...
1
vote
1answer
70 views
SDL across multiple distros
I just made a game with C++/SDL for linux that compiles via the help of cmake/make.
I want to distribute the game to some friends that also run linux. Is there an easy way to help everyone install ...
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
2answers
815 views
Update: Ubuntu SDL SetVideoMode Failed, Couldn't Find matching GLX Visual
I have been tracking down this issue to the best of my abilities and I think I have found the culprit but I am unable to fix it.
Basically I am trying to run my simple game engine in Ubuntu 12.04. ...
3
votes
2answers
174 views
running a.out on another computer
I've successfully compiled a program (including SDL) on my computer (Ubuntu 12) and the a.out runs just fine!
Now, if I send the a.out to a friend, it just does not work. (gives simple error message ...
1
vote
2answers
177 views
SDL+OpenGL program not appearing on linux
I started making this super simple game engine with SDL and OpenGL on windows. The Engine is in a static lib and the so far all it does is display a blue window, with all the ground work for an ...
-1
votes
2answers
178 views
SDL linking error with linux g++
Here is the error I get from my terminal when I try to compile the code
/*This is the init file that controls all the major background processes
will contain major bliting of backgrounds,surfaces, ...
0
votes
1answer
1k views
g++: No such file or directory?
(On Linux, trying to set up SDL) I'm having a time with makefiles, I'm finding them hard to learn. Here is the error I'm getting.
g++: error: game.exe: No such file or directory
make: *** [game.exe] ...
0
votes
1answer
78 views
Having trouble with Makfile and SDL
I'm still getting use to setting up Makefiles and using SDL both, and I'm having trouble getting the makefile to work correctly. I don't know if it's a problem with my makefile or if I'm doing ...
1
vote
2answers
4k views
'“SDL.h” no such file or directory found' when compiling
Here's a piece of my current Makefile:
CFLAGS = -O2 -Wall -pedantic -std=gnu++11 `sdl-config --cflags --libs` -lSDL_mixer
I have libsdl installed properly, SDL.h is in /usr/include/sdl where it ...
1
vote
3answers
1k views
problems when linking objects with g++
I am trying to make a simple obj loader with opengl in c++.
Compiling everything with one command works fine,
g++ -o main main.cpp timer.cpp screen.cpp obj_loader.cpp `sdl-config --cflags --libs` ...
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 ...
0
votes
1answer
184 views
SIGSEGV error while using c++ on linux with openGL and SDL
Myself and a few other guys are taking a crack at building a simple side scroller type game. However, I can not get a hold of them to help answer my question so I put it to you, the following code ...
2
votes
2answers
663 views
OpenGL window with SDL not showing
I'm working on a program with OpenGL/SDL, but the window won't draw. The window's entry appears in the taskbar and the alt+tab menu, but no thumbnail is shown. When I click it, it's marked as active, ...
1
vote
3answers
489 views
Draw an anti aliased rounded rectangle in c++
As written in the title, i would like to draw anti aliased rounded rectangles in c++ and in a linux context (ubuntu). I already tried SDL_gfx but anti aliasing is not available on roundedBox shapes. I ...
8
votes
1answer
842 views
SDL fake fullscreen mode on dual monitor setup under linux
Using SDL 1.3 I want to create fake fullscreen SDL_Window under linux. It is easy if i have only one display.
I just got current display mode and created a window.
SDL_GetDesktopDisplayMode(0, ...
2
votes
3answers
884 views
Dialog/Message boxes with SDL?
Is there any library I can use in conjunction with SDL to present alerts to the user? Currently i'm writing my output to stdout, but would prefer to interact with the user via an interface of sum ...
1
vote
1answer
176 views
trying to track down a Memory Leak using open CV and SDL
The program main loop below is where I am having troubles finding a memory leak. I run Top and every time I loop through taking a picture and printing it, I lose memory that is never recovered even ...
1
vote
1answer
898 views
Multiple SDL windows with YUV Overlay
Does anyone know, how to create two Windows ans both should have an own YUV Overlay with the SDL 1.3 Library?
It is possible or do I try to use a wrong strategy?
If I tried the following source, i ...
0
votes
1answer
331 views
Error: Couldn't open stream with SDL 1.3
I tried to run the following code with the SDL 1.3 library on Ubuntu Linux.
I got the following Error:
Error: Couldn't open stream
Error: Couldn't open stream
At
SDL_Init and SDL_CreateWindow
...
0
votes
1answer
366 views
SDL mute volume in C++
How can i mute volume with SDL in C++?
The speakers are connected into the headphone jack socket. If volume unmuted i can hear background noise, but when i mute (with 'amixer set Headphone mute') it ...
1
vote
1answer
848 views
Load 3D Texture: SDL/OpenGL on Linux Eclipse
There is a strange issue with Eclipse and SDL textures in C OpenGL programming on FC15.
For set-up test purpose, the NeHe example code is used:
http://bigdaddysurf.com/blog/?p=21
The program runs ...
2
votes
1answer
670 views
Choppy SDL+OpenGL animation when vsync is on
Uint32 prev = SDL_GetTicks();
while ( true )
{
Draw();
Uint32 now = SDL_GetTicks();
Uint32 delta = now - prev;
printf( "%u\n" , delta );
Update( delta / 1000.0f );
prev = ...
1
vote
4answers
617 views
Deploying Linux game, shared libraries/dependencies
I have a cross-platform application (game). It uses SDL library. I can't link it statically due to LGPL licence. On Windows I bundle DLL file, on Mac OSX I bundle Frameworks directory. But how can it ...
0
votes
2answers
690 views
SDL Library PNG support
Hi
I tried compiling the code which I downloaded from net for one gaming application.
When I do configure I get the following error :-
configure: error: Unable to find the SDL_image library with ...
0
votes
2answers
703 views
SDL compile problem in linux
i use the following code in the ubuntu terminal to compile my sdl code:
g++ SDL.cpp -o a.out -lsdl -lsdl_gfx
and i get this error:
/usr/bin/ld: cannot find -lsdl
/usr/bin/ld: cannot find -lsdl_gfx
...
3
votes
1answer
558 views
error linking with sdl while crosscompiling application for ARM
I'm trying to crosscompile simple SDL application for ARM processor.
I'm using
Motorola A1200 with Intel Xscale PX27x rev 7 (with iwmmxt extension) processor
And modified crosscompiling toolchain ...
0
votes
1answer
251 views
SDL and nasm on 64bits linux
I am having trouble with nasm and ld here is what I do:
source:
EXTERN SDL_Init
SECTION .text
global _start
_start:
push 0x20
call SDL_Init
mov eax, 1
mov ebx, 0
int 0x80
compile:
nasm -f ...
0
votes
1answer
226 views
Link with SDL using Cocotron CDT
I'm trying to use Cocotron to compile for Linux in Xcode. Everything's working great with Foundation, but I'm trying to also use SDL. I've copied the libraries over from Linux (Ubuntu) but I'm having ...
2
votes
2answers
113 views
Application Distribution
I have a SDL app that compiles fine, and the images show up, but only if they are in the correct folder with the binary next to them, if the images are moved they wont show up next time the ...
1
vote
0answers
479 views
Help with SDL_mixer (no sound)
I have this strange problem with SDL_mixer, it doesn't want to play music. It doesn't throw any error, it just skips it. Any advice? I am compiling on linux with libvorbis.
audio.h
#ifndef AUDIO_H
...
0
votes
1answer
1k views
Problem in Cross-Compiling libSDL for MIPS Platform
I was trying to compile libSDL-1.2.14 for my mips platform.
But it was not successful.
These were the steps that I tried out :
export PATH=/opt/mips-4.3/bin:$PATH
Went inside the libSDL-1.2.14 ...
0
votes
1answer
560 views
SDL_SetVideoMode problems
I'm using SDL_Image to display a JPEG on screen and having some issues with the resolution it's being displayed at.
I understand that if I pass 0 to width, height and bits when calling ...
0
votes
1answer
246 views
Does sdl support ARM lcd video display?
am new to SDL and I have used the spcaview code to get video stream from a camera to a FriendlyARM LCD but the video display is not good and moves very fast. It however works well on the computer ...
2
votes
1answer
281 views
UI utility library for OpenGL 3+, or is Xlib ok?
I want to write some OpenGL 3.2, likely also OpenGL 4 stuff on Linux, and I just saw that libsdl 1.2 (the latest stable release) supports only 2.x. LibSDL 1.3 (which is in development) should support ...
2
votes
2answers
325 views
If I build and link an OpenGL application using only OpenGL ES 1.x calls, will it still work?
I am writing an OpenGL game which will hopefuflly be for both linux and iphoneOS, I basically want to be able to build using the OpenGL ES 1.5 headers and run it on my linux desktop. Can I do this? ...
