mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-25 12:45:17 +00:00
28 lines
No EOL
486 B
C++
28 lines
No EOL
486 B
C++
/**
|
|
* @file deviceimpl.h
|
|
* @brief Device implementation for GFX.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "nn/gfx/device.h"
|
|
|
|
namespace nn
|
|
{
|
|
namespace gfx
|
|
{
|
|
namespace detail
|
|
{
|
|
template<typename T>
|
|
class DeviceImpl
|
|
{
|
|
public:
|
|
DeviceImpl();
|
|
~DeviceImpl();
|
|
|
|
void Initialize(nn::gfx::DeviceInfo const &deviceInfo);
|
|
void Finalize();
|
|
};
|
|
};
|
|
};
|
|
}; |