2
3
4
5
6
7
10#include <pu/ui/ui_Types.hpp>
11#include <pu/sdl2/sdl2_Types.hpp>
16
17
18
19
20
24
25
26
27
31
32
33
34
38
39
40
41
45
46
47
48
52
53
54
55
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.