Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libSDL
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PocketInsanity
libSDL
Commits
c8581d3a
Commit
c8581d3a
authored
Jun 03, 2010
by
Eli Gottlieb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed up new functions and files so that they build as part of SDL.
parent
af2813ac
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
SDL_poly.h
include/SDL_poly.h
+1
-1
SDL_video.h
include/SDL_video.h
+1
-1
SDL_video.c
src/video/SDL_video.c
+1
-1
No files found.
include/SDL_poly.h
View file @
c8581d3a
...
...
@@ -68,7 +68,7 @@ typedef struct SDL_Poly {
*
* \return SDL_TRUE if the polygons are equal, SDL_FALSE otherwise.
*/
extern
DECLSPEC
SDL_bool
SDLCALL
SDL_PolyEquals
(
const
SDL_Poly
*
A
,
const
SDL_Poly
*
A
);
extern
DECLSPEC
SDL_bool
SDLCALL
SDL_PolyEquals
(
const
SDL_Poly
*
A
,
const
SDL_Poly
*
B
);
/**
* \brief Determine whether two rectangles intersect.
...
...
include/SDL_video.h
View file @
c8581d3a
...
...
@@ -1256,7 +1256,7 @@ extern DECLSPEC int SDLCALL SDL_RenderDrawEllipse(const SDL_Ellipse ellipse);
*
* \return 0 on success, or -1 if there is no rendering context current.
*/
extern
DECLSPEC
int
SDLCALL
SDL_RenderDrawEllipses
(
const
SDL_Ellipse
*
*
ellipse
,
int
count
);
extern
DECLSPEC
int
SDLCALL
SDL_RenderDrawEllipses
(
const
SDL_Ellipse
*
ellipse
,
int
count
);
/**
* \brief Fill an ellipse on the current rendering target with the drawing color.
...
...
src/video/SDL_video.c
View file @
c8581d3a
...
...
@@ -2546,7 +2546,7 @@ int SDL_RenderFillEllipse(const SDL_Ellipse ellipse) {
return
SDL_RenderFillEllipses
(
&
ellipse
,
1
);
}
int
SDL_RenderFillEllipses
(
const
SDL_Ellipse
*
*
ellipse
,
int
count
)
{
int
SDL_RenderFillEllipses
(
const
SDL_Ellipse
*
ellipse
,
int
count
)
{
return
-
1
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment