expose labledrawablevulkanencoder functions

This commit is contained in:
Georg Hagen
2025-02-04 22:59:54 +01:00
parent c8d81e3187
commit 4a15c06c6f
2 changed files with 18 additions and 4 deletions

View File

@@ -0,0 +1,17 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
#pragma once
#include "Scene/Prefabs/LabelDrawable.hpp"
#include "Vulkan/VulkanDrawContext.hpp"
namespace OpenVulkano::Vulkan
{
void EncodeBackground(Scene::LabelDrawable* labelDrawable, VulkanDrawContext* drawContext);
void EncodeTextDrawable(Scene::LabelDrawable* labelDrawable, VulkanDrawContext* drawContext);
void EncodeLabelDrawable(Scene::Drawable* instance, VulkanDrawContext* drawContext);
}