mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-05 19:25:04 +00:00
32 lines
No EOL
422 B
C++
32 lines
No EOL
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;
|
|
};
|
|
};
|
|
}; |