Plutonium framework API 1.0.0
Easy-to-use, SDL2-based UI framework for Nintendo Switch homebrew
Loading...
Searching...
No Matches
sdl2_Types.hpp
Go to the documentation of this file.
1/**
2 * Plutonium library
3 * @file sdl2_Types.hpp
4 * @brief Main SDL2 types header
5 * @author XorTroll
6 * @copyright XorTroll
7 */
8
9#pragma once
10#include <SDL2/SDL.h>
11#include <SDL2/SDL2_gfxPrimitives.h>
12#include <SDL2/SDL_image.h>
13#include <SDL2/SDL_mixer.h>
14#include <pu/pu_Include.hpp>
15#include <pu/sdl2/sdl2_CustomTtf.h>
16
17namespace pu::sdl2 {
18
19 /**
20 * @brief Represents a handle to a texture in SDL2.
21 */
22 using Texture = SDL_Texture*;
23
24 /**
25 * @brief Represents a handle to a window in SDL2.
26 */
27 using Window = SDL_Window*;
28
29 /**
30 * @brief Represents a handle to a renderer in SDL2.
31 */
32 using Renderer = SDL_Renderer*;
33
34 /**
35 * @brief Represents a handle to a TTF font in SDL2.
36 */
37 using Font = TTF_Font*;
38
39 /**
40 * @brief Represents a handle to a surface in SDL2.
41 */
42 using Surface = SDL_Surface*;
43
44 /**
45 * @brief High-level handle wrapper to a texture in SDL2.
46 */
48 private:
49 Texture tex;
50
51 public:
52 /**
53 * @brief Creates a new empty TextureHandle.
54 */
55 constexpr TextureHandle() : tex(nullptr) {}
56
57 /**
58 * @brief Creates a new TextureHandle from an existing raw texture.
59 * @param tex Raw texture to create the handle from.
60 */
61 constexpr TextureHandle(Texture tex) : tex(tex) {}
62
65
66 /**
67 * @brief Gets the raw texture handle.
68 * @return Raw texture handle.
69 */
70 inline Texture Get() {
71 return this->tex;
72 }
73 };
74
75}
High-level handle wrapper to a texture in SDL2.
Definition sdl2_Types.hpp:47
constexpr TextureHandle()
Creates a new empty TextureHandle.
Definition sdl2_Types.hpp:55
Texture Get()
Gets the raw texture handle.
Definition sdl2_Types.hpp:70
constexpr TextureHandle(Texture tex)
Creates a new TextureHandle from an existing raw texture.
Definition sdl2_Types.hpp:61
Definition sdl2_Types.hpp:17
#define PU_SMART_CTOR(type)
Defines a static function (::New(...)) as a constructor for smart ptrs, also defines a custom type (:...
Definition pu_Include.hpp:19
struct _TTF_Font TTF_Font
Definition sdl2_CustomTtf.h:79