2013-04-18 06:29:41 +03:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2010-06-09 04:37:08 +03:00
|
|
|
|
2014-02-10 20:54:46 +02:00
|
|
|
#pragma once
|
2010-06-09 04:37:08 +03:00
|
|
|
|
2014-02-17 12:18:15 +02:00
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
#include "Common/Thread.h"
|
|
|
|
#include "VideoBackends/Software/EfbInterface.h"
|
2010-06-09 04:37:08 +03:00
|
|
|
|
2011-02-03 21:55:30 +02:00
|
|
|
namespace SWRenderer
|
2014-02-17 06:51:41 +02:00
|
|
|
{
|
2013-04-14 06:54:02 +03:00
|
|
|
void Init();
|
|
|
|
void Prepare();
|
|
|
|
void Shutdown();
|
2014-03-29 12:05:44 +02:00
|
|
|
|
2013-11-16 06:07:08 +02:00
|
|
|
void SetScreenshot(const char *_szFilename);
|
2013-04-14 06:54:02 +03:00
|
|
|
void RenderText(const char* pstr, int left, int top, u32 color);
|
|
|
|
void DrawDebugText();
|
2010-06-09 04:37:08 +03:00
|
|
|
|
2014-08-11 05:01:42 +03:00
|
|
|
u8* GetNextColorTexture();
|
|
|
|
u8* GetCurrentColorTexture();
|
|
|
|
void SwapColorTexture();
|
2013-11-23 07:38:15 +02:00
|
|
|
void UpdateColorTexture(EfbInterface::yuv422_packed *xfb, u32 fbWidth, u32 fbHeight);
|
2013-04-14 06:54:02 +03:00
|
|
|
void DrawTexture(u8 *texture, int width, int height);
|
2010-06-09 04:37:08 +03:00
|
|
|
|
2013-08-20 14:51:39 +03:00
|
|
|
void Swap(u32 fbWidth, u32 fbHeight);
|
2013-04-14 06:54:02 +03:00
|
|
|
void SwapBuffer();
|
2010-06-09 04:37:08 +03:00
|
|
|
}
|