comparison src/video/SDL_video.c @ 3599:0f958e527e5e

Updated to compile on Windows
author Sam Lantinga <slouken@libsdl.org>
date Thu, 24 Dec 2009 19:18:05 +0000
parents f638ded38b8a
children 847549156244
comparison
equal deleted inserted replaced
3598:427ff6d745df 3599:0f958e527e5e
2671 } 2671 }
2672 } 2672 }
2673 return renderer->RenderFillRects(renderer, rects, count); 2673 return renderer->RenderFillRects(renderer, rects, count);
2674 } 2674 }
2675 2675
2676 #if 0
2676 int 2677 int
2677 SDL_RenderDrawCircle(int x, int y, int radius) 2678 SDL_RenderDrawCircle(int x, int y, int radius)
2678 { 2679 {
2679 return SDL_RenderDrawEllipse(x, y, 2*radius, 2*radius); 2680 return SDL_RenderDrawEllipse(x, y, 2*radius, 2*radius);
2680 } 2681 }
2712 SDL_Unsupported(); 2713 SDL_Unsupported();
2713 return -1; 2714 return -1;
2714 } 2715 }
2715 return renderer->RenderFillEllipse(renderer, x, y, w, h); 2716 return renderer->RenderFillEllipse(renderer, x, y, w, h);
2716 } 2717 }
2718 #endif // 0
2717 2719
2718 int 2720 int
2719 SDL_RenderCopy(SDL_TextureID textureID, const SDL_Rect * srcrect, 2721 SDL_RenderCopy(SDL_TextureID textureID, const SDL_Rect * srcrect,
2720 const SDL_Rect * dstrect) 2722 const SDL_Rect * dstrect)
2721 { 2723 {