Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
80a9c242
Commit
80a9c242
authored
Oct 28, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
XCB: remove debug
parent
58f6cd8a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
16 deletions
+2
-16
modules/video_output/xcb/common.c
modules/video_output/xcb/common.c
+2
-16
No files found.
modules/video_output/xcb/common.c
View file @
80a9c242
...
...
@@ -211,23 +211,9 @@ xcb_cursor_t CreateBlankCursor (xcb_connection_t *conn,
{
xcb_cursor_t
cur
=
xcb_generate_id
(
conn
);
xcb_pixmap_t
pix
=
xcb_generate_id
(
conn
);
xcb_void_cookie_t
ck
;
xcb_generic_error_t
*
err
;
ck
=
xcb_create_pixmap_checked
(
conn
,
1
,
pix
,
scr
->
root
,
1
,
1
);
err
=
xcb_request_check
(
conn
,
ck
);
if
(
err
)
{
fprintf
(
stderr
,
"Cannot create pixmap: %d"
,
err
->
error_code
);
free
(
err
);
}
ck
=
xcb_create_cursor_checked
(
conn
,
cur
,
pix
,
pix
,
0
,
0
,
0
,
1
,
1
,
1
,
0
,
0
);
err
=
xcb_request_check
(
conn
,
ck
);
if
(
err
)
{
fprintf
(
stderr
,
"Cannot create pixmap: %d"
,
err
->
error_code
);
free
(
err
);
}
xcb_create_pixmap
(
conn
,
1
,
pix
,
scr
->
root
,
1
,
1
);
xcb_create_cursor
(
conn
,
cur
,
pix
,
pix
,
0
,
0
,
0
,
1
,
1
,
1
,
0
,
0
);
return
cur
;
}
...
...
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