| 1 | #pragma once |
|---|---|
| 2 | |
| 3 | #include <nn/types.h> |
| 4 | |
| 5 | namespace nn::gfx::detail { |
| 6 | |
| 7 | template <class TImpl> |
| 8 | class RequiredMemory { |
| 9 | protected: |
| 10 | static size_t GetRequiredMemorySize(...); |
| 11 | static void SetMemory(void*, size_t); |
| 12 | static void* GetMemory(); |
| 13 | }; |
| 14 | |
| 15 | } // namespace nn::gfx::detail |
| 16 |