mirror of
				https://github.com/gnif/LookingGlass.git
				synced 2025-11-04 06:31:54 +00:00 
			
		
		
		
	[client] enable mipmapping by default
This commit is contained in:
		@@ -82,7 +82,7 @@ struct AppParams params =
 | 
				
			|||||||
  .h                = 768,
 | 
					  .h                = 768,
 | 
				
			||||||
  .ivshmemSocket    = "/tmp/ivshmem_socket",
 | 
					  .ivshmemSocket    = "/tmp/ivshmem_socket",
 | 
				
			||||||
  .useBufferStorage = true,
 | 
					  .useBufferStorage = true,
 | 
				
			||||||
  .useMipmap        = false,
 | 
					  .useMipmap        = true,
 | 
				
			||||||
  .useSpice         = true,
 | 
					  .useSpice         = true,
 | 
				
			||||||
  .spiceHost        = "127.0.0.1",
 | 
					  .spiceHost        = "127.0.0.1",
 | 
				
			||||||
  .spicePort        = 5900
 | 
					  .spicePort        = 5900
 | 
				
			||||||
@@ -791,7 +791,7 @@ void doHelp(char * app)
 | 
				
			|||||||
    "  -p PORT   Specify the spice port [current: %d]\n"
 | 
					    "  -p PORT   Specify the spice port [current: %d]\n"
 | 
				
			||||||
    "\n"
 | 
					    "\n"
 | 
				
			||||||
    "  -g        Disable OpenGL 4.3 Buffer Storage (GL_ARB_buffer_storage)\n"
 | 
					    "  -g        Disable OpenGL 4.3 Buffer Storage (GL_ARB_buffer_storage)\n"
 | 
				
			||||||
    "  -m        Enable mipmapping (improves a stretched screen)\n"
 | 
					    "  -m        Disable mipmapping\n"
 | 
				
			||||||
    "\n"
 | 
					    "\n"
 | 
				
			||||||
    "  -a        Auto resize the window to the guest\n"
 | 
					    "  -a        Auto resize the window to the guest\n"
 | 
				
			||||||
    "  -r        Don't maintain the aspect ratio\n"
 | 
					    "  -r        Don't maintain the aspect ratio\n"
 | 
				
			||||||
@@ -871,7 +871,7 @@ int main(int argc, char * argv[])
 | 
				
			|||||||
        break;
 | 
					        break;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      case 'm':
 | 
					      case 'm':
 | 
				
			||||||
        params.useMipmap = true;
 | 
					        params.useMipmap = false;
 | 
				
			||||||
        break;
 | 
					        break;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      case 'a':
 | 
					      case 'a':
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user