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
6bfcf330
Commit
6bfcf330
authored
Jul 17, 2010
by
Sunny Sachanandani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add necessary symbols to SDL_x11sym.h
parent
bce186d5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
SDL_x11sym.h
src/video/x11/SDL_x11sym.h
+5
-1
No files found.
src/video/x11/SDL_x11sym.h
View file @
6bfcf330
...
@@ -238,10 +238,14 @@ SDL_X11_SYM(void,XScreenSaverSuspend,(Display *dpy,Bool suspend),(dpy,suspend),r
...
@@ -238,10 +238,14 @@ SDL_X11_SYM(void,XScreenSaverSuspend,(Display *dpy,Bool suspend),(dpy,suspend),r
SDL_X11_MODULE
(
XRENDER
)
SDL_X11_MODULE
(
XRENDER
)
SDL_X11_SYM
(
Bool
,
XRenderQueryExtension
,(
Display
*
dpy
,
int
*
event_base
,
int
*
error_base
),(
dpy
,
event_base
,
error_base
),
return
)
SDL_X11_SYM
(
Bool
,
XRenderQueryExtension
,(
Display
*
dpy
,
int
*
event_base
,
int
*
error_base
),(
dpy
,
event_base
,
error_base
),
return
)
SDL_X11_SYM
(
XRenderPictFormat
*
,
XRenderFindVisualFormat
,(
Display
*
dpy
,
_Xconst
Visual
*
visual
),(
dpy
,
visual
),
return
)
SDL_X11_SYM
(
XRenderPictFormat
*
,
XRenderFindVisualFormat
,(
Display
*
dpy
,
_Xconst
Visual
*
visual
),(
dpy
,
visual
),
return
)
SDL_X11_SYM
(
XRenderPictFormat
*
,
XRenderFindStandardFormat
,(
Display
*
dpy
,
int
format
),(
dpy
,
format
),
return
)
SDL_X11_SYM
(
XRenderPictFormat
*
,
XRenderFindFormat
,(
Display
*
dpy
,
unsigned
long
mask
,
_Xconst
XRenderPictFormat
*
templ
,
int
count
),(
dpy
,
mask
,
templ
,
count
),
return
)
SDL_X11_SYM
(
XRenderPictFormat
*
,
XRenderFindFormat
,(
Display
*
dpy
,
unsigned
long
mask
,
_Xconst
XRenderPictFormat
*
templ
,
int
count
),(
dpy
,
mask
,
templ
,
count
),
return
)
SDL_X11_SYM
(
Picture
,
XRenderCreatePicture
,(
Display
*
dpy
,
Drawable
drawable
,
_Xconst
XRenderPictFormat
*
format
,
unsigned
long
valuemask
,
_Xconst
XRenderPictureAttributes
*
attributes
),(
dpy
,
drawable
,
format
,
valuemask
,
attributes
),
return
)
SDL_X11_SYM
(
Picture
,
XRenderCreatePicture
,(
Display
*
dpy
,
Drawable
drawable
,
_Xconst
XRenderPictFormat
*
format
,
unsigned
long
valuemask
,
_Xconst
XRenderPictureAttributes
*
attributes
),(
dpy
,
drawable
,
format
,
valuemask
,
attributes
),
return
)
SDL_X11_SYM
(
void
,
XRenderFreePicture
,(
Display
*
dpy
,
Picture
picture
),(
dpy
,
picture
),
return
)
SDL_X11_SYM
(
void
,
XRenderChangePicture
,(
Display
*
dpy
,
Picture
picture
,
unsigned
long
valuemask
,
_Xconst
XRenderPictureAttributes
*
attributes
),(
dpy
,
picture
,
valuemask
,
attributes
),
return
)
SDL_X11_SYM
(
void
,
XRenderComposite
,(
Display
*
dpy
,
int
op
,
Picture
src
,
Picture
mask
,
Picture
dst
,
int
src_x
,
int
src_y
,
int
mask_x
,
int
mask_y
,
int
dst_x
,
int
dst_y
,
unsigned
int
width
,
unsigned
int
height
),(
dpy
,
op
,
src
,
mask
,
dst
,
src_x
,
src_y
,
mask_x
,
mask_y
,
dst_x
,
dst_y
,
width
,
height
),
return
)
SDL_X11_SYM
(
void
,
XRenderComposite
,(
Display
*
dpy
,
int
op
,
Picture
src
,
Picture
mask
,
Picture
dst
,
int
src_x
,
int
src_y
,
int
mask_x
,
int
mask_y
,
int
dst_x
,
int
dst_y
,
unsigned
int
width
,
unsigned
int
height
),(
dpy
,
op
,
src
,
mask
,
dst
,
src_x
,
src_y
,
mask_x
,
mask_y
,
dst_x
,
dst_y
,
width
,
height
),
return
)
SDL_X11_SYM
(
void
,
XRenderFillRectangles
,(
Display
*
dpy
,
int
op
,
Picture
dst
,
_Xconst
XRenderColor
*
color
,
_Xconst
XRectangle
*
rectangles
,
int
n_rects
),(
dpy
,
op
,
dst
,
color
,
rectangles
,
n_rects
),
return
)
SDL_X11_SYM
(
Picture
,
XRenderCreateSolidFill
,(
Display
*
dpy
,
const
XRenderColor
*
color
),(
dpy
,
color
),
return
)
SDL_X11_SYM
(
void
,
XRenderSetPictureTransform
,(
Display
*
dpy
,
Picture
picture
,
XTransform
*
transform
),(
dpy
,
picture
,
transform
),
return
)
#endif
#endif
/* *INDENT-ON* */
/* *INDENT-ON* */
...
...
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