Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nx-libs
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
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
dimbor
nx-libs
Commits
ac66ba34
Commit
ac66ba34
authored
Oct 18, 2017
by
Ulrich Sibiller
Committed by
Mike Gabriel
Nov 17, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
NXglxext.c: rename and relocate variable
This change make the code more similar to upstream Xorg which helps when merging in changes from later Xorg releases.
parent
fff0d547
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
NXglxext.c
nx-X11/programs/Xserver/hw/nxagent/NXglxext.c
+3
-4
No files found.
nx-X11/programs/Xserver/hw/nxagent/NXglxext.c
View file @
ac66ba34
...
...
@@ -57,12 +57,11 @@
*/
static
int
__glXDispatch
(
ClientPtr
client
)
{
int
result
;
REQUEST
(
xGLXSingleReq
);
CARD8
opcode
;
int
(
*
proc
)(
__GLXclientState
*
cl
,
GLbyte
*
pc
);
__GLXclientState
*
cl
;
int
retval
;
opcode
=
stuff
->
glxCode
;
cl
=
__glXClients
[
client
->
index
];
...
...
@@ -124,7 +123,7 @@ static int __glXDispatch(ClientPtr client)
opcode
,
client
->
index
);
#endif
re
sult
=
(
*
proc
)(
cl
,
(
GLbyte
*
)
stuff
);
re
tval
=
(
*
proc
)(
cl
,
(
GLbyte
*
)
stuff
);
nxagentGlxTrap
=
0
;
...
...
@@ -133,5 +132,5 @@ static int __glXDispatch(ClientPtr client)
opcode
,
client
->
index
);
#endif
return
re
sult
;
return
re
tval
;
}
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