diff options
Diffstat (limited to 'nx-X11/programs/Xserver/hw/nxagent/X/NXxvdisp.c')
-rw-r--r-- | nx-X11/programs/Xserver/hw/nxagent/X/NXxvdisp.c | 30 |
1 files changed, 12 insertions, 18 deletions
diff --git a/nx-X11/programs/Xserver/hw/nxagent/X/NXxvdisp.c b/nx-X11/programs/Xserver/hw/nxagent/X/NXxvdisp.c index cbb3f63e8..f6dad312a 100644 --- a/nx-X11/programs/Xserver/hw/nxagent/X/NXxvdisp.c +++ b/nx-X11/programs/Xserver/hw/nxagent/X/NXxvdisp.c @@ -275,19 +275,17 @@ ProcXvDispatch(ClientPtr client) case xv_PutVideo: #ifdef PANORAMIX if(!noPanoramiXExtension) - result = (XineramaXvPutVideo(client)); + result = (XineramaXvPutVideo(client)); break; else #endif - result = (ProcXvPutVideo(client)); - break; + result = (ProcXvPutVideo(client)); break; case xv_PutStill: #ifdef PANORAMIX if(!noPanoramiXExtension) - result = (XineramaXvPutStill(client)); + result = (XineramaXvPutStill(client)); break else #endif - result = (ProcXvPutStill(client)); - break; + result = (ProcXvPutStill(client)); break; case xv_GetVideo: result = (ProcXvGetVideo(client)); break; case xv_GetStill: result = (ProcXvGetStill(client)); break; case xv_GrabPort: result = (ProcXvGrabPort(client)); break; @@ -297,39 +295,35 @@ ProcXvDispatch(ClientPtr client) case xv_StopVideo: #ifdef PANORAMIX if(!noPanoramiXExtension) - result = (XineramaXvStopVideo(client)); + result = (XineramaXvStopVideo(client)); break; else #endif - result = (ProcXvStopVideo(client)); - break; + result = (ProcXvStopVideo(client)); break; case xv_SetPortAttribute: #ifdef PANORAMIX if(!noPanoramiXExtension) - result = (XineramaXvSetPortAttribute(client)); + result = (XineramaXvSetPortAttribute(client)); break; else #endif - result = (ProcXvSetPortAttribute(client)); - break; + result = (ProcXvSetPortAttribute(client)); break; case xv_GetPortAttribute: result = (ProcXvGetPortAttribute(client)); break; case xv_QueryBestSize: result = (ProcXvQueryBestSize(client)); break; case xv_QueryPortAttributes: result = (ProcXvQueryPortAttributes(client)); break; case xv_PutImage: #ifdef PANORAMIX if(!noPanoramiXExtension) - result = (XineramaXvPutImage(client)); + result = (XineramaXvPutImage(client)); break; else #endif - result = (ProcXvPutImage(client)); - break; + result = (ProcXvPutImage(client)); break; #ifdef MITSHM case xv_ShmPutImage: #ifdef PANORAMIX if(!noPanoramiXExtension) - result = (XineramaXvShmPutImage(client)); + result = (XineramaXvShmPutImage(client)); break; else #endif - result = (ProcXvShmPutImage(client)); - break; + result = (ProcXvShmPutImage(client)); break; #endif case xv_QueryImageAttributes: result = (ProcXvQueryImageAttributes(client)); break; case xv_ListImageFormats: result = (ProcXvListImageFormats(client)); break; |