97c8847eb0
Co-authored-by: Copilot <copilot@github.com>
14 lines
460 B
C++
14 lines
460 B
C++
#pragma once
|
|
/** @file pixels.hpp
|
|
* @brief glue together various pixel related wrappers that have circular dependencies
|
|
*/
|
|
#include "pixels/PixelFormat.hpp"
|
|
#include "pixels/PixelFormatDetails.hpp"
|
|
#include "pixels/Palette.hpp"
|
|
|
|
/** Pixels are a complex subject. */
|
|
namespace hdk::sdl {
|
|
/** @see https://wiki.libsdl.org/SDL3/SDL_GetPixelFormatDetails */
|
|
PixelFormatDetails PixelFormat::GetDetails() const { return PixelFormatDetails::Get(*this); }
|
|
|
|
}
|