Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
DirectX12IndexBuffer.hpp
1#pragma once
2
3#include "../GraphicsCommon/IndexBuffer.hpp"
4#include <d3d12.h>
5
6namespace Grindstone {
7 namespace GraphicsAPI {
9 public:
10 DirectX12IndexBuffer(IndexBufferCreateInfo ci);
11 virtual ~DirectX12IndexBuffer() {};
12 public:
13 //VkBuffer getBuffer();
14 private:
15 //VkBuffer buffer_;
16 //VkDeviceMemory memory_;
17 };
18 }
19}
Definition DirectX12IndexBuffer.hpp:8
Definition IndexBuffer.hpp:11