mirror of
				https://github.com/yuzu-emu/yuzu.git
				synced 2025-11-04 15:53:42 +00:00 
			
		
		
		
	Merge pull request #2909 from wwylele/telemetry-gas
video_core: report telemetry for gas mode
This commit is contained in:
		
						commit
						f251b8873a
					
				@ -8,6 +8,7 @@
 | 
			
		||||
#include "common/assert.h"
 | 
			
		||||
#include "common/bit_field.h"
 | 
			
		||||
#include "common/logging/log.h"
 | 
			
		||||
#include "core/core.h"
 | 
			
		||||
#include "video_core/regs_framebuffer.h"
 | 
			
		||||
#include "video_core/regs_lighting.h"
 | 
			
		||||
#include "video_core/regs_rasterizer.h"
 | 
			
		||||
@ -1155,6 +1156,11 @@ vec4 secondary_fragment_color = vec4(0.0);
 | 
			
		||||
 | 
			
		||||
        // Blend the fog
 | 
			
		||||
        out += "last_tex_env_out.rgb = mix(fog_color.rgb, last_tex_env_out.rgb, fog_factor);\n";
 | 
			
		||||
    } else if (state.fog_mode == TexturingRegs::FogMode::Gas) {
 | 
			
		||||
        Core::Telemetry().AddField(Telemetry::FieldType::Session, "VideoCore_Pica_UseGasMode",
 | 
			
		||||
                                   true);
 | 
			
		||||
        LOG_CRITICAL(Render_OpenGL, "Unimplemented gas mode");
 | 
			
		||||
        UNIMPLEMENTED();
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    out += "gl_FragDepth = depth;\n";
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user