mirror of
https://github.com/Maschell/StreamingPluginWiiU.git
synced 2024-10-31 18:25:05 +01:00
12 lines
281 B
C
12 lines
281 B
C
|
#ifndef _STREAM_UTILS_H_
|
||
|
#define _STREAM_UTILS_H_
|
||
|
|
||
|
#include <gx2/surface.h>
|
||
|
#include <utils/logger.h>
|
||
|
|
||
|
bool copyBuffer(GX2ColorBuffer * sourceBuffer, GX2ColorBuffer * targetBuffer, uint32_t targetWidth, uint32_t targetHeight);
|
||
|
|
||
|
bool streamVideo(GX2ColorBuffer *srcBuffer);
|
||
|
|
||
|
#endif
|