mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-07-22 18:39:18 +02:00
work
This commit is contained in:
19
gl/cubemap.h
Normal file
19
gl/cubemap.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#pragma once
|
||||
|
||||
#include "object.h"
|
||||
|
||||
namespace gl
|
||||
{
|
||||
// cubemap texture rendertarget
|
||||
// todo: integrate with texture system
|
||||
class cubemap : public object
|
||||
{
|
||||
public:
|
||||
cubemap();
|
||||
~cubemap();
|
||||
|
||||
void alloc(GLint format, int width, int height, GLenum components, GLenum type);
|
||||
void bind(int unit);
|
||||
void generate_mipmaps();
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user