glx: minor cast cleanup
Reviewed-by: Eric Anholt <eric@anholt.net> Signed-off-by: Adam Jackson <ajax@redhat.com>
This commit is contained in:
@@ -385,7 +385,7 @@ __GLXcontext *__glXForceCurrent(__GLXclientState *cl, GLXContextTag tag,
|
|||||||
** See if the context tag is legal; it is managed by the extension,
|
** See if the context tag is legal; it is managed by the extension,
|
||||||
** so if it's invalid, we have an implementation error.
|
** so if it's invalid, we have an implementation error.
|
||||||
*/
|
*/
|
||||||
cx = (__GLXcontext *) __glXLookupContextByTag(cl, tag);
|
cx = __glXLookupContextByTag(cl, tag);
|
||||||
if (!cx) {
|
if (!cx) {
|
||||||
cl->client->errorValue = tag;
|
cl->client->errorValue = tag;
|
||||||
*error = __glXError(GLXBadContextTag);
|
*error = __glXError(GLXBadContextTag);
|
||||||
@@ -534,8 +534,7 @@ static int __glXDispatch(ClientPtr client)
|
|||||||
/*
|
/*
|
||||||
** Use the opcode to index into the procedure table.
|
** Use the opcode to index into the procedure table.
|
||||||
*/
|
*/
|
||||||
proc = (__GLXdispatchSingleProcPtr) __glXGetProtocolDecodeFunction(& Single_dispatch_info,
|
proc = __glXGetProtocolDecodeFunction(& Single_dispatch_info, opcode,
|
||||||
opcode,
|
|
||||||
client->swapped);
|
client->swapped);
|
||||||
if (proc != NULL) {
|
if (proc != NULL) {
|
||||||
GLboolean rendering = opcode <= X_GLXRenderLarge;
|
GLboolean rendering = opcode <= X_GLXRenderLarge;
|
||||||
|
|||||||
Reference in New Issue
Block a user