~registry/dolphin-emu/triforce

« back to all changes in this revision

Viewing changes to Source/Core/VideoBackends/Software/Src/SWRenderer.h

  • Committer: Sérgio Benjamim
  • Date: 2015-02-13 05:54:40 UTC
  • Revision ID: sergio_br2@yahoo.com.br-20150213055440-ey2rt3sjpy27km78
Dolphin Triforce branch from code.google, commit b957980 (4.0-315).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright 2013 Dolphin Emulator Project
 
2
// Licensed under GPLv2
 
3
// Refer to the license.txt file included.
 
4
 
 
5
#ifndef _RENDERER_H_
 
6
#define _RENDERER_H_
 
7
 
 
8
#include "CommonTypes.h"
 
9
 
 
10
namespace SWRenderer
 
11
{
 
12
        void Init();
 
13
        void Prepare();
 
14
        void Shutdown();
 
15
 
 
16
        void RenderText(const char* pstr, int left, int top, u32 color);
 
17
        void DrawDebugText();
 
18
 
 
19
        void DrawTexture(u8 *texture, int width, int height);
 
20
 
 
21
        void SwapBuffer();
 
22
}
 
23
 
 
24
#endif