[Scummvm-git-logs] scummvm master -> 67703917ec95c0bf1e9247c5772fd1308b902fbe

grisenti noreply at scummvm.org
Wed Mar 29 19:29:13 UTC 2023


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
67703917ec HPL1: add shader debug channel


Commit: 67703917ec95c0bf1e9247c5772fd1308b902fbe
    https://github.com/scummvm/scummvm/commit/67703917ec95c0bf1e9247c5772fd1308b902fbe
Author: grisenti (emanuele at grisenti.net)
Date: 2023-03-29T21:28:52+02:00

Commit Message:
HPL1: add shader debug channel

Changed paths:
    engines/hpl1/debug.h
    engines/hpl1/detection.cpp


diff --git a/engines/hpl1/debug.h b/engines/hpl1/debug.h
index 3755dd7502a..f49e69f7bbd 100644
--- a/engines/hpl1/debug.h
+++ b/engines/hpl1/debug.h
@@ -37,7 +37,8 @@ enum DebugChannels {
 	kDebugAudio = 1 << 5,
 	kDebugSaves = 1 << 6,
 	kDebugTextures = 1 << 7,
-	kDebugScripts = 1 << 8
+	kDebugScripts = 1 << 8,
+	kDebugShaders = 1 << 9,
 };
 
 enum DebugLevels {
diff --git a/engines/hpl1/detection.cpp b/engines/hpl1/detection.cpp
index 9e5f2feab68..cf272feaf14 100644
--- a/engines/hpl1/detection.cpp
+++ b/engines/hpl1/detection.cpp
@@ -39,6 +39,7 @@ const DebugChannelDef Hpl1MetaEngineDetection::debugFlagList[] = {
 	{Hpl1::kDebugSaves, "Saves", "Channel for debugging game saving and loading"},
 	{Hpl1::kDebugTextures, "Textures", "Texture debug channel"},
 	{Hpl1::kDebugScripts, "Scripts", "Scripts debug channel"},
+	{Hpl1::kDebugShaders, "Shaders", "Shaders debug channel"},
 	DEBUG_CHANNEL_END};
 
 Hpl1MetaEngineDetection::Hpl1MetaEngineDetection() : AdvancedMetaEngineDetection(Hpl1::GAME_DESCRIPTIONS,




More information about the Scummvm-git-logs mailing list