Added screenshot

This commit is contained in:
MitchellHansen
2017-03-30 23:33:41 -07:00
parent 1540266510
commit 964b70879f
3 changed files with 4 additions and 1 deletions

4
README.md Normal file
View File

@@ -0,0 +1,4 @@
# Screenshots
![alt tag](https://github.com/MitchellHansen/mandlebrot/assets/screenshot.png)

BIN
assets/screenshot.PNG Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 322 KiB

View File

@@ -57,7 +57,6 @@ void func(int id, int count, sf::Uint8* pixels) {
pixels[(pixel_y * WINDOW_X + pixel_x) * 4 + 1] = (val >> 8) & 0xff;
pixels[(pixel_y * WINDOW_X + pixel_x) * 4 + 2] = (val >> 16) & 0xff;
pixels[(pixel_y * WINDOW_X + pixel_x) * 4 + 3] = 200;
//memcpy(&pixels[(pixel_y * pixel_x + pixel_y) * 4], (void*)&c, sizeof(c));
}
}
}