mirror of
				https://github.com/gnif/LookingGlass.git
				synced 2025-11-04 06:31:54 +00:00 
			
		
		
		
	[host] dxgi: match the last entry in the downsample rule list
This commit is contained in:
		@@ -598,24 +598,29 @@ static bool dxgi_init(void)
 | 
			
		||||
      goto fail;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  this->targetWidth  = this->width;
 | 
			
		||||
  this->targetHeight = this->height;
 | 
			
		||||
  this->downsampleLevel = 0;
 | 
			
		||||
  this->targetWidth     = this->width;
 | 
			
		||||
  this->targetHeight    = this->height;
 | 
			
		||||
 | 
			
		||||
  DownsampleRule * rule;
 | 
			
		||||
  DownsampleRule * rule, * match = NULL;
 | 
			
		||||
  vector_forEachRef(rule, &downsampleRules)
 | 
			
		||||
  {
 | 
			
		||||
    if (
 | 
			
		||||
      ( rule->greater && (this->width  > rule->x || this->height  > rule->y)) ||
 | 
			
		||||
      (!rule->greater && (this->width == rule->x && this->height == rule->y)))
 | 
			
		||||
    {
 | 
			
		||||
      DEBUG_INFO("Matched downsample rule %d", rule->id);
 | 
			
		||||
      this->downsampleLevel = rule->level;
 | 
			
		||||
      this->targetWidth   >>= rule->level;
 | 
			
		||||
      this->targetHeight  >>= rule->level;
 | 
			
		||||
      break;
 | 
			
		||||
      match = rule;
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  if (match)
 | 
			
		||||
  {
 | 
			
		||||
    DEBUG_INFO("Matched downsample rule %d", rule->id);
 | 
			
		||||
    this->downsampleLevel = match->level;
 | 
			
		||||
    this->targetWidth   >>= match->level;
 | 
			
		||||
    this->targetHeight  >>= match->level;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  DEBUG_INFO("Request Size      : %u x %u", this->targetWidth, this->targetHeight);
 | 
			
		||||
 | 
			
		||||
  const char * copyBackend = option_get_string("dxgi", "copyBackend");
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user