mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-22 11:15:15 +00:00
32 lines
422 B
C
32 lines
422 B
C
|
/**
|
||
|
* @file buffer.h
|
||
|
* @brief GFX Buffers.
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
namespace nn
|
||
|
{
|
||
|
namespace gfx
|
||
|
{
|
||
|
class BufferInfo
|
||
|
{
|
||
|
public:
|
||
|
void SetDefault();
|
||
|
|
||
|
u64 mInfo; // _0
|
||
|
};
|
||
|
|
||
|
class BufferTextureViewInfo
|
||
|
{
|
||
|
public:
|
||
|
void SetDefault();
|
||
|
|
||
|
u64 _0;
|
||
|
u64 _8;
|
||
|
u64 _10;
|
||
|
};
|
||
|
};
|
||
|
};
|