mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-01 09:42:39 +00:00
29 lines
No EOL
540 B
C++
29 lines
No EOL
540 B
C++
/**
|
|
* @file RenderTargetDepth.h
|
|
* @brief Defines a class to represent a render target depth.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "TextureData.h"
|
|
|
|
namespace agl
|
|
{
|
|
class RenderTargetDepth : public agl::TextureData
|
|
{
|
|
public:
|
|
RenderTargetDepth();
|
|
RenderTargetDepth(agl::TextureData const &, u32, u32);
|
|
|
|
void onApplyTextureData_();
|
|
void initRegs_(u32) const;
|
|
|
|
s32 _128;
|
|
u32 _12C;
|
|
u64 _130;
|
|
u64 _138;
|
|
u64 _140;
|
|
u64 _148;
|
|
u8 _150[0x178-0x150];
|
|
};
|
|
}; |