OpenGL: Implement textures

This commit is contained in:
Lynix
2020-04-19 15:33:56 +02:00
parent 349e915e10
commit b4b15f826d
12 changed files with 227 additions and 298 deletions

View File

@@ -7,15 +7,6 @@
namespace Nz
{
inline VkImage OpenGLTexture::GetImage() const
{
return m_image;
}
inline VkImageView OpenGLTexture::GetImageView() const
{
return m_imageView;
}
}
#include <Nazara/OpenGLRenderer/DebugOff.hpp>