Tagged Questions
8
votes
4answers
4k 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. ...
3
votes
1answer
357 views
C++: weird error “expected initializer before extern” in library SDL_image.h
I'm currently trying to make a simple game with SDL and Box2D. Unfortunately, the code I added to make the character shoot proyectiles is so buggy I can't even begin to count the errors. To deal with ...
2
votes
1answer
297 views
SDL Surface Pixel Format Conversion
I want to convert an SDL_Surface, which was loaded by IMG_Load() to an other pixel format (rgba8) for an OpenGL Texture. How can I do that?
I've read about SDL_ConvertSurface() in the documentation, ...
1
vote
3answers
193 views
C++: Cannot instantiate a pointer directly
This is an SDL problem, however I have the strong feeling that the problem I came across is not related to SDL, but more to C++ / pointers in general.
To make a long story short, this code doesn't ...
1
vote
3answers
162 views
Is there a better way to load in a big animation?
Maybe not really big, but a hundred frames or something. Is the only way to load it in by making an array and loading each image individually?
load_image() is a function I made which loads the images ...
0
votes
1answer
34 views
SDL Jpeg dll not finding jpeg_calc_output_dimensions?
I'm trying to use a 64-bit application that uses SDL (and SDL Image in particular) (on Windows). The application runs, but I didn't have a 64-bit jpeg loader. SDL-Image expects a jpeg.dll, but the ...
0
votes
0answers
89 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 ...
0
votes
3answers
1k views
SDL_image/C++ OpenGL Program: IMG_Load() produces fuzzy images
I'm trying to load an image file and use it as a texture for a cube. I'm using SDL_image to do that.
I used this image because I've found it in various file formats (tga, tif, jpg, png, bmp)
The ...