Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
Texture.hpp
1#pragma once
2
3#include <stdint.h>
4#include "Formats.hpp"
5
6namespace Grindstone::GraphicsAPI {
8 unsigned char *data;
9 uint32_t size;
10 uint32_t width, height;
11 };
12
21 TextureWrapMode wrapModeU = TextureWrapMode::Repeat;
22 TextureWrapMode wrapModeV = TextureWrapMode::Repeat;
23 TextureWrapMode wrapModeW = TextureWrapMode::Repeat;
24 TextureFilter mipFilter = TextureFilter::Nearest;
25 TextureFilter minFilter = TextureFilter::Linear;
26 TextureFilter magFilter = TextureFilter::Linear;
27 // Anistropy dictates how pixels are blended together as the angle to its normal
28 // increase. When anisotropy == 0, it will be disabled.
29 float anistropy = 0.0f;
30 float mipMin = -1000.f;
31 float mipMax = 1000.0f;
32 float mipBias = 0.0f;
33 bool shouldGenerateMipmaps = true;
34 };
35
40 class Texture {
41 public:
42 struct CreateInfo {
43 const char* debugName;
44 const char* data;
45 uint32_t width, height, size;
46 uint16_t mipmaps;
47 bool isCubemap;
48 ColorFormat format;
49 TextureOptions options;
50 };
51
53 unsigned char* data[6];
54 uint32_t width, height;
55 uint16_t mipmaps;
56 ColorFormat format;
57 TextureOptions options;
58 };
59
60 virtual void RecreateTexture(const Texture::CreateInfo& createInfo) = 0;
61 };
62}
Definition Texture.hpp:40