glxproxy: Don't track GLCLientm{aj,in}orVersion
Basically just a port of 62f06b0d to glxproxy.
Reviewed-by: Eric Anholt <eric@anholt.net>
Signed-off-by: Adam Jackson <ajax@redhat.com>
			
			
This commit is contained in:
		
							parent
							
								
									e549ffb5f1
								
							
						
					
					
						commit
						f579cc85c2
					
				| 
						 | 
					@ -2734,8 +2734,6 @@ __glXClientInfo(__GLXclientState * cl, GLbyte * pc)
 | 
				
			||||||
    int to_screen = 0;
 | 
					    int to_screen = 0;
 | 
				
			||||||
    int s;
 | 
					    int s;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    cl->GLClientmajorVersion = req->major;
 | 
					 | 
				
			||||||
    cl->GLClientminorVersion = req->minor;
 | 
					 | 
				
			||||||
    free(cl->GLClientextensions);
 | 
					    free(cl->GLClientextensions);
 | 
				
			||||||
    buf = (const char *) (req + 1);
 | 
					    buf = (const char *) (req + 1);
 | 
				
			||||||
    cl->GLClientextensions = strdup(buf);
 | 
					    cl->GLClientextensions = strdup(buf);
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -88,12 +88,6 @@ ResetClientState(int clientIndex)
 | 
				
			||||||
    memset(cl, 0, sizeof(__GLXclientState));
 | 
					    memset(cl, 0, sizeof(__GLXclientState));
 | 
				
			||||||
    cl->be_displays = keep_be_displays;
 | 
					    cl->be_displays = keep_be_displays;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    /*
 | 
					 | 
				
			||||||
     ** By default, assume that the client supports
 | 
					 | 
				
			||||||
     ** GLX major version 1 minor version 0 protocol.
 | 
					 | 
				
			||||||
     */
 | 
					 | 
				
			||||||
    cl->GLClientmajorVersion = 1;
 | 
					 | 
				
			||||||
    cl->GLClientminorVersion = 0;
 | 
					 | 
				
			||||||
    free(cl->GLClientextensions);
 | 
					    free(cl->GLClientextensions);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    memset(cl->be_displays, 0, screenInfo.numScreens * sizeof(Display *));
 | 
					    memset(cl->be_displays, 0, screenInfo.numScreens * sizeof(Display *));
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -119,8 +119,6 @@ struct __GLXclientStateRec {
 | 
				
			||||||
    /* Back pointer to X client record */
 | 
					    /* Back pointer to X client record */
 | 
				
			||||||
    ClientPtr client;
 | 
					    ClientPtr client;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    int GLClientmajorVersion;
 | 
					 | 
				
			||||||
    int GLClientminorVersion;
 | 
					 | 
				
			||||||
    char *GLClientextensions;
 | 
					    char *GLClientextensions;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    GLXContextTag *be_currentCTag;
 | 
					    GLXContextTag *be_currentCTag;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue