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