Removed useless std::function from rendering code

Former-commit-id: eaba729d5047d326fb2e746cec0621bfcf2eb1c5
This commit is contained in:
Lynix
2015-01-23 20:21:00 +01:00
parent f6df10dacf
commit 01a1badac7
3 changed files with 18 additions and 15 deletions

View File

@@ -31,6 +31,9 @@ class NAZARA_API NzRenderer
friend NzTexture;
public:
using DrawCall = void (*)(nzPrimitiveMode, unsigned int, unsigned int);
using DrawCallInstanced = void (*)(unsigned int, nzPrimitiveMode, unsigned int, unsigned int);
NzRenderer() = delete;
~NzRenderer() = delete;