Question
render pixel(s)
I currently don't see how i can achieve this. I have an array of pixel data, looking like this:
unsigned char pixels[width*height][3]; //1024*768
So to get data fom a pixel i do this:
pixels[0][0] = R;
pixels[0][1] = G;
pixels[0][2] = B;
Next thing i want to do is write all these pixels to my layer.What exactly do i have to do?
