summaryrefslogtreecommitdiff
path: root/src/vk/texture.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/vk/texture.hpp')
-rw-r--r--src/vk/texture.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/vk/texture.hpp b/src/vk/texture.hpp
index 35772c5..c489e90 100644
--- a/src/vk/texture.hpp
+++ b/src/vk/texture.hpp
@@ -1,5 +1,5 @@
/*
- * Copyright 2022 Frederico de Oliveira Linhares
+ * Copyright 2022-2023 Frederico de Oliveira Linhares
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -20,6 +20,7 @@
#include <string>
#include "core.hpp"
+#include "font.hpp"
namespace VK
{
@@ -33,6 +34,7 @@ struct Texture
uint32_t width, height;
uint32_t mip_levels;
+ Texture(Font *font, const char *str);
Texture(std::string texture_path);
Texture(const char* texture_path);
~Texture();