Merge pull request #2909 from wwylele/telemetry-gas

video_core: report telemetry for gas mode
This commit is contained in:
bunnei 2017-08-31 11:12:55 -04:00 committed by GitHub
commit f251b8873a
1 changed files with 6 additions and 0 deletions

View File

@ -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";