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
b231d0b9
Commit
b231d0b9
authored
Feb 01, 2011
by
Sam Lantinga
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Split the rendering API out into a separate header file.
parent
6539ab9c
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
642 additions
and
581 deletions
+642
-581
Makefile.in
Makefile.in
+1
-0
SDL.h
include/SDL.h
+1
-0
SDL_compat.h
include/SDL_compat.h
+0
-1
SDL_render.h
include/SDL_render.h
+639
-0
SDL_video.h
include/SDL_video.h
+0
-580
SDL_sysvideo.h
src/video/SDL_sysvideo.h
+1
-0
No files found.
Makefile.in
View file @
b231d0b9
...
@@ -69,6 +69,7 @@ HDRS = \
...
@@ -69,6 +69,7 @@ HDRS = \
SDL_power.h
\
SDL_power.h
\
SDL_quit.h
\
SDL_quit.h
\
SDL_rect.h
\
SDL_rect.h
\
SDL_render.h
\
SDL_revision.h
\
SDL_revision.h
\
SDL_rwops.h
\
SDL_rwops.h
\
SDL_scancode.h
\
SDL_scancode.h
\
...
...
include/SDL.h
View file @
b231d0b9
...
@@ -86,6 +86,7 @@
...
@@ -86,6 +86,7 @@
#include "SDL_loadso.h"
#include "SDL_loadso.h"
#include "SDL_mutex.h"
#include "SDL_mutex.h"
#include "SDL_power.h"
#include "SDL_power.h"
#include "SDL_render.h"
#include "SDL_rwops.h"
#include "SDL_rwops.h"
#include "SDL_thread.h"
#include "SDL_thread.h"
#include "SDL_timer.h"
#include "SDL_timer.h"
...
...
include/SDL_compat.h
View file @
b231d0b9
...
@@ -328,7 +328,6 @@ extern DECLSPEC int SDLCALL SDL_EnableKeyRepeat(int delay, int interval);
...
@@ -328,7 +328,6 @@ extern DECLSPEC int SDLCALL SDL_EnableKeyRepeat(int delay, int interval);
extern
DECLSPEC
void
SDLCALL
SDL_GetKeyRepeat
(
int
*
delay
,
int
*
interval
);
extern
DECLSPEC
void
SDLCALL
SDL_GetKeyRepeat
(
int
*
delay
,
int
*
interval
);
extern
DECLSPEC
int
SDLCALL
SDL_EnableUNICODE
(
int
enable
);
extern
DECLSPEC
int
SDLCALL
SDL_EnableUNICODE
(
int
enable
);
typedef
SDL_Texture
*
SDL_TextureID
;
typedef
SDL_Window
*
SDL_WindowID
;
typedef
SDL_Window
*
SDL_WindowID
;
#define SDL_RenderPoint SDL_RenderDrawPoint
#define SDL_RenderPoint SDL_RenderDrawPoint
...
...
include/SDL_render.h
0 → 100644
View file @
b231d0b9
This diff is collapsed.
Click to expand it.
include/SDL_video.h
View file @
b231d0b9
This diff is collapsed.
Click to expand it.
src/video/SDL_sysvideo.h
View file @
b231d0b9
...
@@ -26,6 +26,7 @@
...
@@ -26,6 +26,7 @@
#include "SDL_mouse.h"
#include "SDL_mouse.h"
#include "SDL_keysym.h"
#include "SDL_keysym.h"
#include "SDL_render.h"
#include "SDL_shape.h"
#include "SDL_shape.h"
/* The SDL video driver */
/* The SDL video driver */
...
...
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