#pragma once /// @file pixels.hpp /// For complete documentation, see src/pixels.cpp #include "pixels/PixelFormat.hpp" #include "pixels/PixelFormatDetails.hpp" #include "pixels/Palette.hpp" namespace hdk::sdl { PixelFormatDetails PixelFormat::GetDetails() const { return PixelFormatDetails::Get(*this); } }