Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
L
libvncserver
Project
Project
Details
Activity
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
rasky
libvncserver
Commits
ea5bed50
Commit
ea5bed50
authored
Jul 22, 2011
by
William Roberts
Committed by
Christian Beier
Jul 23, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Corrected resolution issue, but screen is getting reported as wrong size
parent
5be89ead
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
fbvncserver.c
examples/android/jni/fbvncserver.c
+1
-1
No files found.
examples/android/jni/fbvncserver.c
View file @
ea5bed50
...
...
@@ -189,7 +189,7 @@ static void init_fb_server(int argc, char **argv)
assert
(
fbbuf
!=
NULL
);
/* TODO: This assumes scrinfo.bits_per_pixel is 16. */
vncscr
=
rfbGetScreen
(
&
argc
,
argv
,
scrinfo
.
xres
,
scrinfo
.
yres
,
5
,
2
,
2
);
vncscr
=
rfbGetScreen
(
&
argc
,
argv
,
scrinfo
.
xres
,
scrinfo
.
yres
,
5
,
2
,
(
scrinfo
.
bits_per_pixel
/
8
)
);
assert
(
vncscr
!=
NULL
);
vncscr
->
desktopName
=
"Android"
;
...
...
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