comparison src/video/SDL_video.c @ 4773:590e680cc4e4

Fixed up new functions and files so that they build as part of SDL.
author Eli Gottlieb <eligottlieb@gmail.com>
date Thu, 03 Jun 2010 17:21:40 -0400
parents 37e9f8154ac4
children b6930aefd008
comparison
equal deleted inserted replaced
4772:37e9f8154ac4 4773:590e680cc4e4
2544 2544
2545 int SDL_RenderFillEllipse(const SDL_Ellipse ellipse) { 2545 int SDL_RenderFillEllipse(const SDL_Ellipse ellipse) {
2546 return SDL_RenderFillEllipses(&ellipse,1); 2546 return SDL_RenderFillEllipses(&ellipse,1);
2547 } 2547 }
2548 2548
2549 int SDL_RenderFillEllipses(const SDL_Ellipse ** ellipse, int count) { 2549 int SDL_RenderFillEllipses(const SDL_Ellipse * ellipse, int count) {
2550 return -1; 2550 return -1;
2551 } 2551 }
2552 2552
2553 int SDL_RenderDrawPoly(const SDL_Poly poly) { 2553 int SDL_RenderDrawPoly(const SDL_Poly poly) {
2554 return SDL_RenderDrawPolys(&poly,1); 2554 return SDL_RenderDrawPolys(&poly,1);