mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-03 16:16:05 +00:00
GraphicsModAction changes for resource modifications
This commit is contained in:
parent
a0c9fbc12f
commit
9a6af372a0
1 changed files with 4 additions and 2 deletions
|
@ -17,6 +17,8 @@
|
||||||
#include "VideoCommon/ConstantManager.h"
|
#include "VideoCommon/ConstantManager.h"
|
||||||
#include "VideoCommon/GraphicsModSystem/Types.h"
|
#include "VideoCommon/GraphicsModSystem/Types.h"
|
||||||
#include "VideoCommon/PixelShaderGen.h"
|
#include "VideoCommon/PixelShaderGen.h"
|
||||||
|
#include "VideoCommon/Resources/MaterialResource.h"
|
||||||
|
#include "VideoCommon/Resources/MeshResource.h"
|
||||||
|
|
||||||
namespace GraphicsModActionData
|
namespace GraphicsModActionData
|
||||||
{
|
{
|
||||||
|
@ -25,8 +27,8 @@ struct DrawStarted
|
||||||
const GraphicsModSystem::DrawDataView& draw_data_view;
|
const GraphicsModSystem::DrawDataView& draw_data_view;
|
||||||
u32 current_components_available;
|
u32 current_components_available;
|
||||||
bool* skip;
|
bool* skip;
|
||||||
GraphicsModSystem::MaterialResource** material;
|
VideoCommon::MaterialResource** material;
|
||||||
GraphicsModSystem::MeshResource** mesh;
|
VideoCommon::MeshResource** mesh;
|
||||||
bool* ignore_mesh_transform;
|
bool* ignore_mesh_transform;
|
||||||
std::optional<Common::Matrix44>* transform;
|
std::optional<Common::Matrix44>* transform;
|
||||||
std::optional<GraphicsModSystem::Camera>* camera;
|
std::optional<GraphicsModSystem::Camera>* camera;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue