comparison old/simple_render/trash/mygl.cpp @ 507:735f76483bb2

Reorganization..
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 12 Oct 2009 09:39:35 +0900
parents TaskManager/Test/simple_render/trash/mygl.cpp@b6858e9fe2b4
children
comparison
equal deleted inserted replaced
506:1d4a8a86f26b 507:735f76483bb2
1 #include <iostream>
2 #include <SDL.h>
3 using namespace std;
4
5 void write_pixel(int x, int y)
6 {
7 int i;
8 for (i=0; i<height; i++)
9 {
10 pixels[i*width] = 0xff;
11 }
12
13 }