void RenderTarget::DrawRectangle(int x, int y, int w, int h, uint32 color) { for (int i = 0; i <= w; i++){ for (int j = 0; j <= h; j++){ SetPixel(x + w, y + h, color); } } }