Tagged Questions
5
votes
2answers
6k views
Using .reset() to free a boost::shared_ptr with sole ownership
I'm storing an object (TTF_Font) in a shared_ptr that is provided to me from a third-party API. I cannot use new or delete on the object, so the shared_ptr is also provided a "freeing" functor.
// ...
3
votes
1answer
298 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
275 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
1answer
325 views
Problem linking SDL_Image against libpng
I'm trying to compile SDL_Image 1.2.10 with MinGW + MSys (gcc 4.5.0) on Windows, I have compiled all the requires libs (zlib 1.2.5, libpng 1.4.2, libjpeg 8a, libtiff 3.9.2). SDL_Image compiles fine, ...
1
vote
3answers
187 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
160 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
0answers
83 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
1answer
156 views
Linking SDL_image errors
I am running into problems when linking SDL_image in gcc 3 on cygwin under Windows 7.
I receive the following error:
/usr/lib/gcc/i686-pc-cygwin/4.3.4/../../../../i686-pc-cygwin/bin/ld: cannot find ...
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 ...