Mercurial > sdl-ios-xcode
diff src/video/SDL_video.c @ 4782:b6930aefd008
Finished X11 shaped-window functionality and removed ellipse+polygon rendering.
author | Eli Gottlieb <eligottlieb@gmail.com> |
---|---|
date | Wed, 30 Jun 2010 16:19:44 -0400 |
parents | 590e680cc4e4 |
children | 329708ffe2a7 |
line wrap: on
line diff
--- a/src/video/SDL_video.c Mon Jun 21 23:08:10 2010 -0400 +++ b/src/video/SDL_video.c Wed Jun 30 16:19:44 2010 -0400 @@ -2534,38 +2534,6 @@ return renderer->RenderFillRects(renderer, rects, count); } -int SDL_RenderDrawEllipse(const SDL_Ellipse ellipse) { - return SDL_RenderDrawEllipses(&ellipse,1); -} - -int SDL_RenderDrawEllipses(const SDL_Ellipse * ellipse, int count) { - return -1; -} - -int SDL_RenderFillEllipse(const SDL_Ellipse ellipse) { - return SDL_RenderFillEllipses(&ellipse,1); -} - -int SDL_RenderFillEllipses(const SDL_Ellipse * ellipse, int count) { - return -1; -} - -int SDL_RenderDrawPoly(const SDL_Poly poly) { - return SDL_RenderDrawPolys(&poly,1); -} - -int SDL_RenderDrawPolys(const SDL_Poly *poly, int count) { - return -1; -} - -int SDL_RenderFillPoly(const SDL_Poly poly) { - return SDL_RenderFillPolys(&poly,1); -} - -int SDL_RenderFillPolys(const SDL_Poly *poly, int count) { - return -1; -} - int SDL_RenderCopy(SDL_Texture * texture, const SDL_Rect * srcrect, const SDL_Rect * dstrect)