Tagged Questions
0
votes
0answers
46 views
How can I play sound on two separate sound cards with SDL?
I have two sound cards on my machine, and I'm developing an application playing sounds via SDL_mixer. I want some of these sounds played on first card and some on others. How can I achieve that in ...
0
votes
0answers
140 views
Play audio and video at the same time with libvlc (C and sdl)
I have compiled the LibVLC SampleCode SDL (the one at the top) from the VLC wiki on windows and it works, but only without sound.
When I remove this line, which is obviously responsible:
...
-2
votes
2answers
138 views
Interpreting DrMemory log, memory leak [closed]
I wrote a simple snake game using SDL api, and there's a memory leak somewhere in the game, because after about 10 minutes of running the game it takes over 50mb of ram and it's still expanding. I did ...
0
votes
0answers
25 views
SDL, GLEW: undefined reference [duplicate]
Possible Duplicate:
Building glew on windows with mingw
I'm trying to study some C++ with SDL and OpenGL. As binding for OpenGL i've chosen GLEW, which i finally got to compile...well until ...
0
votes
0answers
247 views
Simple SDL + openGL code for displaying images in 2D alone, no 3D involved
I'm inexperienced in 2D, and about a week ago started messing with SDL. Built some simple structures to have images, which would be on layers, so I could have my own drawing order, so sprites would be ...
0
votes
1answer
188 views
How to set up gl3w on Windows?
I was looking for a detailed guide to setting up Gl3w, since there are none anywhere I look!
1
vote
1answer
128 views
Pixel level manipulation windows
I've been using SDL to render graphics in C. I know there are several options to create graphics at the pixel level on Windows, including SDL and OpenGL. But how do these programs do it? Fine, I can ...
2
votes
1answer
345 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 ...
2
votes
2answers
198 views
SDL apps don't run on other computers
I've just written an app in C++ using SDL 1.2.15 and SDL_image 1.2.12 libraries. It works on my computer but whenever I send *.exe to my friends (of course with all *.dll files from SDL libraries and ...
0
votes
3answers
273 views
Combining multiple .o files into an executable
I'm trying to combine object files created from C++ files into an executable using gcc. Unfortunately, gcc is giving me thousands of undefined reference errors to strings, arrays, etc.
I am doing ...
0
votes
1answer
157 views
Program not executed with SDL
I run this program, don't see any output in the console, and it terminates immediatly. What am I doing wrong?
The code:
#include <iostream>
#include <SDL/SDL.h>
using namespace std;
...
0
votes
0answers
150 views
OpenGL FPS Style Camera
i have been working on a basic game in OpenGL and i am trying to get the basic movement of the camera down. i'm pretty new to programming graphics. I used to do alot of Win32 API stuff and wanted to ...
0
votes
3answers
173 views
SDL OpenGL Code Appears To Have No Depth
I am running this code on a PC (compiled in code::blocks 10.05)
When i used to do basic OpenGL code with GLUT (GL Utiltiy Toolkit) Everything worked fine.
Now that i'm running OpenGL code through ...
0
votes
2answers
121 views
Direct3D Window
I'd like to start learning Direct3D, but I'm unable to fully focus on it with 99% of the code in tutorials targeted only at creating and maintaining a window, which I don't even care about.
I want to ...
3
votes
4answers
621 views
A way to make keyboard event queue both responsive and not take whole CPU power
I am making an Sdl game, it's 2d shooter. I am using SDL to import surfaces and OpenGL to draw them on the screen (doing so because it works way faster than just SDL). I've got two threads running, ...
0
votes
0answers
146 views
How to use compiled resource file with SDL_LoadBMP
I have to use NetBeans 7.1.1 for C++ in Windows 7 and I am writing an application using SDL. I can get SDL_LoadBMP to work fine with an external file but I want my resources to be compiled as part of ...
0
votes
2answers
71 views
Can't find content (images/sound) when running code on another computer c++
I define paths to images and sound in my code with a string like this:
"Graphics\ \player.png"
I also load images through xml files and then the path looks like this:
< Graphics\tile1.png >
The ...
0
votes
1answer
215 views
Tao.Sdl Audio crash on Windows
I have a short little piece of code to play tones via Tao.Sdl. It works fine on Linux and Mac (using Mono), but it crashes on Windows7, 64-bit with Mono or .NET. Here is the code:
using System;
using ...
0
votes
1answer
73 views
Can you make title bar less windows with SDL in windows?
Can you hide the title bar in windows (xp/vista/7) in C++ and SDL?
0
votes
2answers
237 views
Code Blocks and SDL output. weird behavior
I dont know if my codeblocks has something wrong but I can compile the project but I cannot run it from the program itself it flashes and then the SDL aplication closes and the console appear(IDK but ...
0
votes
1answer
61 views
Using ZZipLib with SDL? (Compiling SDL_rwops_zzip.c)
This question is a bit specific, but here goes: I'd like to use ZZipLib with SDL. (http://zziplib.sourceforge.net/) ZZipLib comes with a file called SDL_rwops_zzip.c that is specifically intended to ...
0
votes
2answers
149 views
What does a “context is rendered using a software renderer” error mean?
I've been using SDL to set up an OpenGL rendering context embedded within a form, and everything's worked fine. Now I'm trying to use a SDL-created window, but I'm getting some very strange errors. ...
1
vote
1answer
1k views
Qt and SDL together under Windows
I read this advice:
How do I use Qt and SDL together?
and now I have question connected to it. This example was created for Linux, but how use it under Windows? winId() under Windows return WinAPI ...
3
votes
1answer
382 views
Haskell: Can not install SDL-0.6.2 on windows
I am trying to install the Haskell SDL-0.6.2 package on Windows 7 with ghc 6.12.1 (Haskell Platform). I end up getting the following output from cabal:
C:\Users\Martin\dev\Rasenschach_0>cabal ...
3
votes
6answers
316 views
Renaming executable to game.exe causes 15 second delay when running — STRANGE issue
This shakes my understanding of computers and operating systems on a level that makes me very uneasy. I have just spent about an hour entering different iterations of compile commands to g++ and in my ...
2
votes
1answer
345 views
SDL and haskell problem in windows
I asked before what libraries to use in haskell to program a game, and got quite nice answers that got me in the right direction.
But i cant seem to solve a problem related to sdl binding. I've been ...
0
votes
0answers
149 views
How to load image with IMG_Load() without the byte padding for each line?
If i load image such as 98x*** which is 3 bytes per pixel, it will create 2 bytes padding there to make it fit in 4 bytes sequences.
Is it possible to use IMG_Load() without generating the padded ...
2
votes
2answers
685 views
C++ Semi-Transparent Window SDL
I wish to have a semi-transparent SDL background (nothing to do with sub-surfaces or images), such that instead of having a black background it is actually transparent, but the other things I draw are ...
5
votes
4answers
467 views
SDL_Mixer MIDI Volume issues on Windows Vista/7
I'm not actually well versed in C++ or SDL_Mixer, but I'm asking this question anyway on behalf on the Doom community. Put simply, nobody writing Doom source ports can seem to figure out how to ...
2
votes
1answer
334 views
Lightweight method for drawing various shapes / text on the screen quickly in C#?
This is hopefully a really simple question!
Which method (and possibly library) is considered to be the best for drawing text and shapes, and modifying individual pixels, on a 2D canvas, such that I ...
0
votes
4answers
186 views
Which is better: NULL or false?
I've been programming with SDL for a while, and I decide to make a header file to simplify my coding. Now I have a question; if I pass a function parameter I don't want, should I do
test(NULL);
...
0
votes
2answers
2k views
undefined reference to `SDL_main'
I am trying to build a project on windows using MinGW and eclipse.
I'm using the SDL library but when i try to complie it, I get the error
g++ -Wl,-subsystem,windows -oplikoo.exe src\mouse.o ...
8
votes
5answers
1k views
Haskell or Ocaml with OpenGL and SDL precompiled distribution for Windows
I want to learn Ocaml or Haskell and I want to do it by writing a simple game. Apparently, there's one small problem: nobody cares about Windows and I want to do it on Windows, natively.
Haskell has ...
1
vote
1answer
406 views
Is it possible to create a GetOpenFileName dialog in a fullscreen app?
I have a fullscreen application wrtten in C++ and would like to open a dialog window so the user can select a file to be opened without the app breaking out of fullscreen mode.
On Windows, to run in ...
0
votes
2answers
409 views
Unwanted SDL_QUIT Event on mouseclick
I'm having a slight problem with my SDL/Opengl code, specifically, when i try to do something on a mousebuttondown event, the program sends an sdl_quit event to the stack, closing my application.
I ...
1
vote
2answers
764 views
Compiler issues on VC++ 2008 Express, Seemingly correct code throws errors
I've been trying to get back into coding for a while, so I figured I'd start with some simple SDL, now, without the file i/o, this compiles fine, but when I throw in the stdio code, it starts throwing ...
1
vote
1answer
639 views
Perl SDL Windows Installation
I'm using Windows and I need the SDL Library to start using SDL with Perl. I've been pointed to http://www.libsdl.org/ to download it. My first queston is, which library do I want from that page? ...
1
vote
2answers
281 views
Ret Failure with SDL using FASM on Win32
I'm using SDL with FASM, and have code that's minimally like the following:
format ELF
extrn _SDL_Init
extrn _SDL_SetVideoMode
extrn _SDL_Quit
extrn _exit
SDL_INIT_VIDEO equ 0x00000020
section ...
0
votes
2answers
104 views
What is the best way to create a nested opengl canvas
I would like to write a library that draws some opengl on a given window handle.
How can I initialize an opengl-context inside a given window?
Is it possible to do that platform independent using ...
5
votes
11answers
33k views
how to output to console in C++/Windows
When using iostream in C++ on Linux, it displays the program output in the terminal, but in Windows, it just saves the output to a stdout.txt file. How can I, in Windows, make the output appear in the ...
0
votes
1answer
297 views
How do I prevent the console from appearing when building a Windows SDL project with Eclipse?
When you run the .exe, the SDL window appears, but so does a console window. How do I get just the SDL window by itself?
What configuration option should I be changing? Is there one?
I'm compiling ...
10
votes
4answers
7k views
How to statically compile an SDL game on Windows
I have been trying to produce a statically linked "single binary" version of my game for windows. I want to link with sdl, sdl_image and sdl_mixer which in turn pull in a few support libraries. ...