in Windows XP, C programming language
I want to read a pixel of the screen(i.e. 1024*768 which you can see now) in fast way
I think the framebuffer is the solution.
so
I tried
#include "SDL.h"
#include <stdio.h>
#include <time.h>
SDL_Surface *screen;
int main(int argc, char *argv[])
{
if ( SDL_Init(SDL_INIT_VIDEO) < 0 )
{
fprintf(stderr, "Unable to init SDL: %s\n", SDL_GetError());
exit(1);
}
screen = SDL_GetVideoSurface();
if ( screen == NULL )
{
exit(1);
}
return 0;
}
but the screen seems NULL
sorry for newb question
but could somebody let me know how to access framebuffer for reading a pixel?
any possible ways are welcome
thanks in advanced