![]() |
Kodi Documentation 18.0
Kodi is an open source media player and entertainment hub.
|
#include "OverlayRendererUtil.h"
#include "ServiceBroker.h"
#include "cores/VideoPlayer/DVDCodecs/Overlay/DVDOverlayImage.h"
#include "cores/VideoPlayer/DVDCodecs/Overlay/DVDOverlaySpu.h"
#include "cores/VideoPlayer/DVDCodecs/Overlay/DVDOverlaySSA.h"
#include "windowing/GraphicContext.h"
#include "settings/Settings.h"
#include "settings/SettingsComponent.h"
Namespaces | |
namespace | OVERLAY |
Macros | |
#define | clamp(x) (x) > 255.0 ? 255 : ((x) < 0.0 ? 0 : (int)(x+0.5f)) |
Functions | |
uint32_t * | OVERLAY::convert_rgba (CDVDOverlayImage *o, bool mergealpha) |
uint32_t * | OVERLAY::convert_rgba (CDVDOverlaySpu *o, bool mergealpha, int &min_x, int &max_x, int &min_y, int &max_y) |
bool | OVERLAY::convert_quad (ASS_Image *images, SQuads &quads, int max_x) |
int | OVERLAY::GetStereoscopicDepth () |
#define clamp | ( | x | ) | (x) > 255.0 ? 255 : ((x) < 0.0 ? 0 : (int)(x+0.5f)) |