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 ...
1
vote
0answers
11 views
SDL Image Not Supported : cute2.png is not a PNG file, or PNG support is not available
I am beginner to SDL and 2D graphics.
Here I was just trying a tutorial, as :
http://lazyfoo.net/SDL_tutorials/lesson03/windows/msvsnet0508e/index.php
...
0
votes
1answer
30 views
Clang with C code: enumeration values not explicitly handled in switch
I'm trying to compile this code with clang 3.1 and the option -Weverything:
#include <stdio.h>
#include <stdlib.h>
#include <SDL/SDL.h>
SDL_Surface* init(SDL_Surface* screen);
...
2
votes
0answers
27 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 ( ...
0
votes
1answer
25 views
How to load Raw Pixel Bitmap on SDL?
Currently I use bmp files for an SDL app, but I want to hide them to distribute my exe. I thought moving them as raw bytes into header files was a good way, since the BMP are very simple ...
1
vote
1answer
16 views
SDL create transparent surface
I was searching for how to create a transparent surface in SDL, and I found the following: http://samatkins.co.uk/blog/2012/04/25/sdl-blitting-to-transparent-surfaces/
Basically, it is:
...
0
votes
0answers
15 views
SDL Tridion 2011 study material similar to books on .net like of wrox professionals [migrated]
I've been working on SDL Tridion 2011 together with writing C# TBBs, DWTs. However Whatever I learned is just with help from my seniors OR learning through some existing codes already in use. I never ...
0
votes
1answer
23 views
How can I pass a “global” pointer to a SDL_Surface to a render-function of a class in C++?
My following problem is related to my previous question here.
I want to pass a "global" screen to a render-function of a class. screen has to be a pointer to a SDL_Surface, because the initial ...
0
votes
0answers
44 views
Compiling SDL program on Mac w/ Netbeans, dyld/libiconv issue
I'm trying to use Netbeans/Clang to compile an SDL based app on Mac OSX. My SDL is provided by Macports. I had to follow the instructions at ...
1
vote
1answer
21 views
Xcode SDL resources folder
I am making a SDL project in Xcode and I have a folder called resources where my images are stored. For my SDL application to access these images with SDL_LoadBMP the resources folder needs to be in ...
0
votes
1answer
22 views
display a text using a SDL_Surface converted in a texture
As said, I'm trying to display a text using a SDL_Surface converted in a texture here's my code :
if (SDL_Init(SDL_INIT_VIDEO) == 0) {
//Create a surface
switch (method) {
case 2: // ...
0
votes
1answer
18 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
2answers
33 views
Preorder traversal visualization of binary tree
I've decided to take the code from http://rosettacode.org/wiki/Tree_traversal#C.2B.2B and visualize it using SDL. The ASCII graphic on the page looks like:
1
/ \
/ \
/ ...
1
vote
1answer
65 views
GL_UNSIGNED_SHORT_5_6_5 undeclared?
I have a problem loading a texture using SDL library.
Usually I make programs on Linux but I try to create a code that is compatible with Visual Studio also.
On Linux are everything OK but on Visual ...
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 ...
0
votes
1answer
31 views
SDL OpenGL Texture display issue
I'm following this tutorial in order to *Load an OpenGL Texture from an SDL_Surface*, I've copy/paste code and adapted it but it only display wrong old part of the buffer which is a little bit ...
0
votes
0answers
34 views
Unable to access SDL_Rect box, whenever tried, program immediately returns 3
I am trying to make a small game using SDL Library.
In the BULLETclass, there is a member SDL_Rect box. When I access the box.y to check
if y<0 to delete bullet, the program immediately returns 3 ...
0
votes
1answer
25 views
SDL loading image when in struct
So i'm having a problem I have a struct called Image and a funcion LoadImage and it works all fine but when I have something like this:
Animation.h
typedef struct Anim
{
Anim_data anim_data[20];
...
0
votes
1answer
26 views
SDL Initialization ERROR
I had have some problems to setup the SDL on my PC .
I already copy all DLL fonts to the folders System32 or SysWOW64 (I've tried both). And make the all the setup in Visual Studio 2012, but when I ...
0
votes
1answer
33 views
Low level windowing API for OS X
I am looking for a low level windowing API for OS X that creates (or allows me to easily create) an OpenGL context. I have tried GLUT, GLFW, SDL, and the Cocoa windowing system, but they all have some ...
0
votes
0answers
24 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 ...
0
votes
1answer
159 views
+50
Strange unhandled exception; Access violation reading location
When I try to call SDL_DisplayFormatAlpha, I get this unhandled exception: "Unhandled exception at 0x68125981 (SDL.dll) in herorpg.exe: 0xC0000005: Access violation reading location 0x0000013C."
...
0
votes
0answers
48 views
SDL access violation
I have a big program that is causing me access violation when using sdl_rwops. So I decided to create a small program just to test sdl_rwops and it is causing me the same access violation. For what I ...
0
votes
1answer
32 views
LNK 2019 errors with SDL
i recently installed SDL and VS 2010 on a new computer and im having issues with my test application. here is the code:
#include <SDL.h>
#include <SDL_opengl.h>
#undef main
int ...
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
54 views
Cross-inclusion in a SDL game engine - C++
First of all, I'll try to be as precise as my english admit me to be.
I am currently building a game engine using the SDL and I've come to a cross-inclusion problem.
I have a class Scene and a class ...
0
votes
2answers
72 views
SDL video overlay flickers with SDL_Flip
I use SDL and libav in C++ to draw a video on the screen in Linux. Most of my code for video opening is based on this tutorial, but I changed some functions that were deprecated. I initialize SDL like ...
-1
votes
1answer
25 views
Smoothly zoom a big Image with SDL
I need to smoothly zoom in/out and pan an image (for a slideshow) with the sdl library.
I've tried rotozoom from the SDL GFX library but it's far away from smooth.
What would be the best approach ...
1
vote
1answer
54 views
SDL: Undefined symbols for architecture x86_64
I'm working on a simple wrapper for SDL to function as a sort of game engine. At the moment I have a simple temporary main function that looks like this:
#include <iostream>
int main(int argc, ...
0
votes
1answer
25 views
Can SDL create a sRGB OpenGL context?
The documentation of SDL does not seem to mention much about color spaces. I don't see any SRGB flag/parameter for SDL_SetVideoMode or SDL_GL_SetAttribute. Is it possible at all for SDL to ask ...
0
votes
0answers
49 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
2answers
69 views
C++ SDL Reaction Time Game
Me and my friend needs to create a reaction time game.
Something like this.
Right now we just managed to show an image of the red button, but we need help how to make a hitbox, where if you click the ...
1
vote
1answer
27 views
Qt SDL blit(?) issue
I'm using Qt and SDL to display surfaces on my application, I initialize the widget like said on this page, I blit 2 or 3 surfaces on the window but the only result is a black screen. And when I close ...
0
votes
2answers
23 views
Linking errors with SDL_mixer library
I'm working with the SDL and SDL_mixer library and am getting the following errors when I compile:
....
game.cpp:(.text+0x88f): undefined reference to `Mix_OpenAudio'
Jukebox.o: In function ...
2
votes
1answer
42 views
SDL : blitting on background instead of screen?
Hi i'm working on an SDL/C game , i've made a camera scrolling with a
big background (6000*1024) and (1024*768) screen,
game.screen = SDL_SetVideoMode( SCREEN_WIDTH, SCREEN_HEIGHT, SCREEN_BPP, ...
0
votes
0answers
26 views
SDL fbcon - disable fbioput_vscreeninfo output
I am currently using SDL 1.2.14 with fbcon driver.
My problem is that when my application launches, it prints multiple lines of logging from fbioput_vscreeninfo onto the console. i.e.
Cannot ...
-6
votes
0answers
27 views
errors in SDL code [closed]
unresolved external symbol _SDL_UpperBlit referenced in function "void __cdecl apply_surface(int,int,struct SDL_Surface *,struct SDL_Surface *,struct SDL_Rect *)" ...
0
votes
0answers
52 views
Getting debug assertion failure while running a sample SDL program using VS2010
I have just started learning SDL(Simple DirectMedia Layer) API.While compiling a sample HelloWorld app in VS2008 I got the following debug assertion failed error :
Debug Assertion Failed!
Program: ...
0
votes
1answer
62 views
can't make a while loop to move from one class to another in c++ using SDL
the problem that i face in my code is when the game starts it work fine but when the user want to return to the pricipal menu the application stops
main.cpp----->
int main ( int argc, char** argv )
...
0
votes
1answer
22 views
Different type of data in SDLNet_TCP_Send
Is it also possible to send any other type of variable then char[] using SDLNet_TCP_Send and SDLNet_TCP_Recv? If so what should maxlength be equal to?
1
vote
1answer
38 views
Detecting surface intersection in lispbuilder-sdl
I am working on making a game in Common Lisp, using Lispbuilder-SDL. I am currently writing a function to check for collision between two surfaces. I need to find out if a surface A intersects with ...
0
votes
1answer
43 views
Can the frame size be cropped during decoding using libavcodec?
I've followed Dranger's tutorial for displaying video using libav and FFMPEG. http://dranger.com/ffmpeg/
avcodec_decode_video2 seems to be the slowest part of the video decoding process. I will ...
0
votes
1answer
57 views
C++ SDL 2-ways network communication
I am trying to create simple basic communication between client and server, where client should send message to server and server should then send response back.
Server:
TCPsocket ...
2
votes
1answer
35 views
SDL Key blocking and ghosting
I have been using SDL to make a 2d game in c++ and have found that some key combinations don't work.
For example, if I hold the left and up arrow keys, SDL doesn't recognize the right arrow key ...
0
votes
1answer
53 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 ...
0
votes
0answers
48 views
SDL_mixer - how to get music length?
I'm using Free Pascal and SDL_mixer.pas headers (originally from JEDI package). I can play music but can't find any function which return me music length (in seconds). Am I blind or JEDI header is ...
2
votes
0answers
39 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 ...
0
votes
1answer
47 views
Is it possible to specify the size of an image/sprite in C++/SDL?
I'm creating a game similar to this and I'm attemptin to figure out how to generate randomly sized enemy fishes. As far as I can tell, the sprites you create in SDL take on the size of the image you ...
-2
votes
2answers
78 views
Porting C++/SDL/OpenGL to Java or C# - which one beter? [closed]
I've made a project (game remake) some time ago in C++ using SDL and OpenGL. It wasn't too advance project and i think i didn't use any complicated and only-C++ features, so it's shouldn't be that ...
1
vote
1answer
52 views
Can I have a default Framebuffer without alpha and depth?
I am looking to save some video card memory by not allocating what I do not use. I am far from running out of memory, but it would feel 'cleaner' to me.
I can't really think of a reason to have an ...
0
votes
0answers
39 views
libSDL, CMake and Mac OS X lion 2
I'm trying to compile a cmake project on my mac, but it depends on the SDL.
I have alreaday read "LibSDL, CMake and MacOSX Lion", however I couldn't solve this problem.
CMakeList.txt
...




