mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-12-13 21:02:28 +00:00
10 lines
146 B
C++
10 lines
146 B
C++
#pragma once
|
|
|
|
#include <SDL.h>
|
|
|
|
class StreamUtils
|
|
{
|
|
public:
|
|
static
|
|
void scaleSourceToDestinationSurface(SDL_Rect* src, SDL_Rect* dst);
|
|
};
|