mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-22 19:25:16 +00:00
31 lines
541 B
C
31 lines
541 B
C
|
/**
|
||
|
* @file NVNsampler.h
|
||
|
* @brief Defines a sampler for NVN images.
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
class NVNsampler;
|
||
|
|
||
|
namespace agl
|
||
|
{
|
||
|
namespace driver
|
||
|
{
|
||
|
class NVNsampler_
|
||
|
{
|
||
|
public:
|
||
|
NVNsampler_();
|
||
|
NVNsampler_(agl::driver::NVNsampler_ const &);
|
||
|
~NVNsampler_();
|
||
|
|
||
|
void releaseSampler();
|
||
|
bool registerSampler(NVNsampler const &, char const *);
|
||
|
void updateTextureId(s32);
|
||
|
|
||
|
u64 _0;
|
||
|
s16 _8;
|
||
|
};
|
||
|
};
|
||
|
};
|