VideoCommon: call texture load graphics mod hook when Dolphin loads a texture

This commit is contained in:
iwubcode
2022-10-28 19:24:43 -05:00
parent 8efd7833e5
commit ea3e133200
7 changed files with 27 additions and 11 deletions

View File

@ -3,6 +3,8 @@
#pragma once
#include <string_view>
#include "Common/CommonTypes.h"
#include "Common/Matrix.h"
@ -26,4 +28,8 @@ struct Projection
{
Common::Matrix44* matrix;
};
struct TextureLoad
{
std::string_view texture_name;
};
} // namespace GraphicsModActionData