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
fff0d547
Commit
fff0d547
authored
Oct 18, 2017
by
Ulrich Sibiller
Committed by
Mike Gabriel
Nov 17, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
glxext.c/NXglxext.c: merge two functions into one
This has also been done in Xorg 7.1 This also fixes a little flaw for the swapped case: a check for glXRenderLarge was missing.
parent
b0b62dde
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
120 deletions
+9
-120
glxext.c
nx-X11/programs/Xserver/GL/glx/glxext.c
+5
-49
NXglxext.c
nx-X11/programs/Xserver/hw/nxagent/NXglxext.c
+4
-71
No files found.
nx-X11/programs/Xserver/GL/glx/glxext.c
View file @
fff0d547
...
...
@@ -42,7 +42,6 @@ static __GLXextensionInfo *__glXExt /* = &__glDDXExtensionInfo */;
/*
** Forward declarations.
*/
static
int
__glXSwapDispatch
(
ClientPtr
);
static
int
__glXDispatch
(
ClientPtr
);
/*
...
...
@@ -246,7 +245,7 @@ void GlxExtensionInit(void)
*/
extEntry
=
AddExtension
(
GLX_EXTENSION_NAME
,
__GLX_NUMBER_EVENTS
,
__GLX_NUMBER_ERRORS
,
__glXDispatch
,
__glX
Swap
Dispatch
,
ResetExtension
,
__glXDispatch
,
ResetExtension
,
StandardMinorOpcode
);
if
(
!
extEntry
)
{
FatalError
(
"__glXExtensionInit: AddExtensions failed
\n
"
);
...
...
@@ -445,53 +444,10 @@ static int __glXDispatch(ClientPtr client)
/*
** Use the opcode to index into the procedure table.
*/
proc
=
__glXSingleTable
[
opcode
];
return
(
*
proc
)(
cl
,
(
GLbyte
*
)
stuff
);
}
static
int
__glXSwapDispatch
(
ClientPtr
client
)
{
REQUEST
(
xGLXSingleReq
);
CARD8
opcode
;
int
(
*
proc
)(
__GLXclientState
*
cl
,
GLbyte
*
pc
);
__GLXclientState
*
cl
;
opcode
=
stuff
->
glxCode
;
cl
=
__glXClients
[
client
->
index
];
if
(
!
cl
)
{
cl
=
(
__GLXclientState
*
)
malloc
(
sizeof
(
__GLXclientState
));
__glXClients
[
client
->
index
]
=
cl
;
if
(
!
cl
)
{
return
BadAlloc
;
}
memset
(
cl
,
0
,
sizeof
(
__GLXclientState
));
}
if
(
!
cl
->
inUse
)
{
/*
** This is first request from this client. Associate a resource
** with the client so we will be notified when the client dies.
*/
XID
xid
=
FakeClientID
(
client
->
index
);
if
(
!
AddResource
(
xid
,
__glXClientRes
,
(
void
*
)(
long
)
client
->
index
))
{
return
BadAlloc
;
}
ResetClientState
(
client
->
index
);
cl
->
inUse
=
GL_TRUE
;
cl
->
client
=
client
;
}
/*
** Check for valid opcode.
*/
if
(
opcode
>=
__GLX_SINGLE_TABLE_SIZE
)
{
return
BadRequest
;
}
/*
** Use the opcode to index into the procedure table.
*/
proc
=
__glXSwapSingleTable
[
opcode
];
if
(
client
->
swapped
)
proc
=
__glXSwapSingleTable
[
opcode
];
else
proc
=
__glXSingleTable
[
opcode
];
return
(
*
proc
)(
cl
,
(
GLbyte
*
)
stuff
);
}
...
...
nx-X11/programs/Xserver/hw/nxagent/NXglxext.c
View file @
fff0d547
...
...
@@ -107,77 +107,10 @@ static int __glXDispatch(ClientPtr client)
/*
** Use the opcode to index into the procedure table.
*/
proc
=
__glXSingleTable
[
opcode
];
/*
* Report upstream that we are
* dispatching a GLX operation.
*/
nxagentGlxTrap
=
1
;
#ifdef TEST
fprintf
(
stderr
,
"__glXDispatch: Going to dispatch GLX operation [%d] for client [%d].
\n
"
,
opcode
,
client
->
index
);
#endif
result
=
(
*
proc
)(
cl
,
(
GLbyte
*
)
stuff
);
nxagentGlxTrap
=
0
;
#ifdef TEST
fprintf
(
stderr
,
"__glXDispatch: Dispatched GLX operation [%d] for client [%d].
\n
"
,
opcode
,
client
->
index
);
#endif
return
result
;
}
static
int
__glXSwapDispatch
(
ClientPtr
client
)
{
int
result
;
REQUEST
(
xGLXSingleReq
);
CARD8
opcode
;
int
(
*
proc
)(
__GLXclientState
*
cl
,
GLbyte
*
pc
);
__GLXclientState
*
cl
;
opcode
=
stuff
->
glxCode
;
cl
=
__glXClients
[
client
->
index
];
if
(
!
cl
)
{
cl
=
(
__GLXclientState
*
)
malloc
(
sizeof
(
__GLXclientState
));
__glXClients
[
client
->
index
]
=
cl
;
if
(
!
cl
)
{
return
BadAlloc
;
}
memset
(
cl
,
0
,
sizeof
(
__GLXclientState
));
}
if
(
!
cl
->
inUse
)
{
/*
** This is first request from this client. Associate a resource
** with the client so we will be notified when the client dies.
*/
XID
xid
=
FakeClientID
(
client
->
index
);
if
(
!
AddResource
(
xid
,
__glXClientRes
,
(
void
*
)(
long
)
client
->
index
))
{
return
BadAlloc
;
}
ResetClientState
(
client
->
index
);
cl
->
inUse
=
GL_TRUE
;
cl
->
client
=
client
;
}
/*
** Check for valid opcode.
*/
if
(
opcode
>=
__GLX_SINGLE_TABLE_SIZE
)
{
return
BadRequest
;
}
/*
** Use the opcode to index into the procedure table.
*/
proc
=
__glXSwapSingleTable
[
opcode
];
if
(
client
->
swapped
)
proc
=
__glXSwapSingleTable
[
opcode
];
else
proc
=
__glXSingleTable
[
opcode
];
/*
* Report upstream that we are
...
...
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