diff options
author | rtk0c <[email protected]> | 2022-04-19 12:36:02 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2022-04-19 12:36:02 -0700 |
commit | 3290bb2b2dec223f0312c6d5fc3edf71d5d6e46f (patch) | |
tree | 1293b330f07ef410b1aea22e338c99c5ca07356b /source/Texture.cpp | |
parent | 07e8754e4d799e44678b595177e79e6eaa621268 (diff) |
Changeset: 12 Add hardcoded dependencies for IresManager, migrate Shader to Ires
Diffstat (limited to 'source/Texture.cpp')
-rw-r--r-- | source/Texture.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/Texture.cpp b/source/Texture.cpp index 8fd74ac..8fb657a 100644 --- a/source/Texture.cpp +++ b/source/Texture.cpp @@ -238,10 +238,10 @@ Texture* IresTexture::GetInstance() { return mInstance.Get(); } -void IresTexture::Write(rapidjson::Value& value, rapidjson::Document& root) const { +void IresTexture::Write(IresWritingContext& ctx, rapidjson::Value& value, rapidjson::Document& root) const { // TODO } -void IresTexture::Read(const rapidjson::Value& value) { +void IresTexture::Read(IresLoadingContext& ctx, const rapidjson::Value& value) { // TODO } |