1
vote
2answers
42 views

passing pointer to SDL function

I'm trying to understand why method1 works, and method2 doesnt work, when I'm passing "offset" to SDL_BlitSurface function. USAGE: int SDL_BlitSurface(SDL_Surface *src, SDL_Rect *srcrect, ...
0
votes
1answer
81 views

SDL_Surface pointer withing class becoming NULL

My SDL_Surface within my own defined class, Actor, is returning to NULL after I load the SDL_Surface. After much console output and using GDB to find where the error might possibly be. The Actor class ...
-1
votes
1answer
88 views

SDL_GetPixel pointer problems

This is my very first question: First of these 2 functions you see here below works fine to some extent: Uint32 AWSprite::get_pixelColor_location(SDL_Surface * surface, int x, int y) { int bpp = ...
0
votes
1answer
61 views

Variable pointer's member function not drawing to SDL_Surface?

I want to use a set to reference some TileObjects (a user defined class) so that I can loop through them and act accordingly, or find a specific one and remove it, etc etc. The problem is, one thing ...
1
vote
1answer
190 views

Strange segmentation faults - pushing back an object pointed by pointer to a vector causes crash

I'm trying to write a game using SDL, but i'm getting a lot of strange segfaults. I have created class Monster and Player which get public variables from class Creature. Class Creature gets variables ...
0
votes
1answer
121 views

Access class member pointer

I am writing several classes in C++ that is an overlay to common SDL 2 functions. Class A holds the SDL window data and manipulates it class A { protected: SDL_Window *window; public: ...
0
votes
1answer
137 views

C++ Weird function pointer behaviour

It's a simple opengl/sdl program. Generally theres a huge deque in which the program holds the display data for example a triangle will be inserted / readed in/from the dequeue like this ( GL_Begin ...
0
votes
0answers
186 views

SDL SDL_DisplayFormat c++ pointer retunes NULL on vaild images

simple code the image pointer are NULL why?: // defined in the header files SDL_Surface* m_imageIcon; SDL_Surface* m_CharMainTile; bool SDLmanager::loadFiles() { ...
0
votes
1answer
190 views

Unable to load Images with SFML and SDL?

For the sake of simplicity, I wanted to create my own function for the project that I'm currently working on. Unfortunately, it kept on closing After error checking, I found out that it's the fault of ...
0
votes
1answer
109 views

Pointer Address gives a 1 instead of hexadecimal adress

I'm trying to make it so I have one object, that has a pointer, so multiple classes can work with the same object. But the only thing it's giving me is 1 instead of the hexadecimal address that I ...
-1
votes
1answer
96 views

problems with pointers in a function [closed]

I have a problem with this code: bool Beforegame::AdjusteSizeImages(std::vector<SDL_Surface*>& toadjuste, int ts) { double zoomaux=0; switch(ts) { case SIZE_SMALL: ...
0
votes
1answer
173 views

When passed to an object, will SDL_Surface store a new instance of an image in memory, or point to the image that's passed to it?

The Enemy class inherits from the Object class and uses the Object class's constructor to load the image... Object::Object(SDL_Surface *imageFile,int x, int y, int w, int h) { image = imageFile; ...
1
vote
1answer
505 views

Check if surface has been freed before SDL_FreeSurface

When using SDL_Surfaces to handle images, I run into the problem that running SDL_FreeSurface(SDL_Surface *) (doc) twice on the same pointer yields a segmentation fault. I understand why that ...
0
votes
1answer
82 views

dereferencing SDL_Surfaces?

is there any way to copy a SDL surface to another, like creating a backup copy, without modifying the original when the copy is modified? *surface = *original_surface dosnt work. SDL_Surface does not ...
3
votes
2answers
9k views

_Block_Type_Is_Valid (pHead->nBlockUse) Error

I been working in a new project but I encounter with a problem which I can't see why fail. When I perfom this line delete textY give me the error _Block_Type_Is_Valid (pHead->nBlockUse). So what am I ...
1
vote
2answers
195 views

Error when compiling cpp file [duplicate]

Possible Duplicate: C++: malloc : error: invalid conversion from ‘void*’ to ‘uint8_t*’ Hello, I have this little function Uint32 moveSprite(Uint32 interval, void *param) { SDL_Rect* ...
2
votes
1answer
412 views

SDL_Surface pointer passing between two classes

If I declare a SDL_Surface pointer in a class, can i share it with another class to draw on it in somehow? class foo{ private: SDL_Surface* mainScreen; public: foo() { ...
1
vote
4answers
382 views

Learning C++ and SDL- does the following generate a memory leak?

I'm learning a bit of C++ on my own, and I'm not entirely sure I have a good grasp on memory management. I only know Java and a bit of PHP and Python, so this is a bit new for me. I'm working with SDL ...
2
votes
4answers
1k views

C++/SDL 'void*' is not a point-to-object type

I'm new on C++ and I'm trying to make some testing with C++ and SDL and in SDL we have a function: SDL_TimerID SDL_AddTimer(Uint32 interval, SDL_NewTimerCallback callback, void *param); which I ...