Plutonium framework API 1.0.0
Easy-to-use, SDL2-based UI framework for Nintendo Switch homebrew
Loading...
Searching...
No Matches
render_SDL2.hpp
Go to the documentation of this file.
1/**
2 * Plutonium library
3 * @file render_SDL2.hpp
4 * @brief Contains useful wrappers for rendering with SDL2
5 * @author XorTroll
6 * @copyright XorTroll
7 */
8
9#pragma once
10#include <pu/ui/ui_Types.hpp>
11#include <pu/sdl2/sdl2_Types.hpp>
12
13namespace pu::ui::render {
14
15 /**
16 * @brief Converts a Surface to a Texture.
17 * @param surface The Surface to convert.
18 * @note The Surface will be freed after conversion.
19 * @return The converted Texture.
20 */
21 sdl2::Texture ConvertToTexture(sdl2::Surface surface);
22
23 /**
24 * @brief Loads an image from the specified path.
25 * @param path The path to the image.
26 * @return The loaded image as a Texture, or nullptr if the image could not be loaded.
27 */
28 sdl2::Texture LoadImage(const std::string &path);
29
30 /**
31 * @brief Gets the width of a Texture.
32 * @param texture The Texture to get the width from.
33 * @return The width of the Texture.
34 */
35 i32 GetTextureWidth(sdl2::Texture texture);
36
37 /**
38 * @brief Gets the height of a Texture.
39 * @param texture The Texture to get the height from.
40 * @return The height of the Texture.
41 */
42 i32 GetTextureHeight(sdl2::Texture texture);
43
44 /**
45 * @brief Sets the alpha value (for blending) of a Texture.
46 * @param texture The Texture to set the alpha value to.
47 * @param alpha The alpha value to set.
48 */
49 void SetAlphaValue(sdl2::Texture texture, const u8 alpha);
50
51 /**
52 * @brief Frees a Texture from memory, and sets nullptr to the reference.
53 * @param texture The Texture to free.
54 * @note If the Texture is nullptr, this function will do nothing.
55 */
56 void DeleteTexture(sdl2::Texture &texture);
57
58}
Definition sdl2_Types.hpp:17
Definition render_Renderer.hpp:15
i32 GetTextureHeight(sdl2::Texture texture)
Gets the height of a Texture.
void DeleteTexture(sdl2::Texture &texture)
Frees a Texture from memory, and sets nullptr to the reference.
i32 GetTextureWidth(sdl2::Texture texture)
Gets the width of a Texture.
void SetAlphaValue(sdl2::Texture texture, const u8 alpha)
Sets the alpha value (for blending) of a Texture.
sdl2::Texture LoadImage(const std::string &path)
Loads an image from the specified path.
sdl2::Texture ConvertToTexture(sdl2::Surface surface)
Converts a Surface to a Texture.