2015-05-24 07:55:12 +03:00
|
|
|
// Copyright 2009 Dolphin Emulator Project
|
2015-05-18 02:08:10 +03:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 06:29:41 +03:00
|
|
|
// 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
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
2014-02-17 12:18:15 +02:00
|
|
|
#include "VideoBackends/OGL/GLUtil.h"
|
|
|
|
#include "VideoBackends/Software/BPMemLoader.h"
|
2010-06-09 04:37:08 +03:00
|
|
|
|
|
|
|
struct OutputVertexData;
|
|
|
|
|
|
|
|
namespace HwRasterizer
|
|
|
|
{
|
2013-04-14 06:54:02 +03:00
|
|
|
void Init();
|
2012-12-17 22:54:20 +02:00
|
|
|
void Shutdown();
|
2013-04-14 06:54:02 +03:00
|
|
|
|
2012-12-17 22:54:20 +02:00
|
|
|
void Prepare();
|
2010-06-09 04:37:08 +03:00
|
|
|
|
2013-04-14 06:54:02 +03:00
|
|
|
void BeginTriangles();
|
|
|
|
void EndTriangles();
|
2010-06-09 04:37:08 +03:00
|
|
|
|
2013-04-14 06:54:02 +03:00
|
|
|
void DrawTriangleFrontFace(OutputVertexData *v0, OutputVertexData *v1, OutputVertexData *v2);
|
2010-06-09 04:37:08 +03:00
|
|
|
|
2013-04-14 06:54:02 +03:00
|
|
|
void Clear();
|
2010-06-09 04:37:08 +03:00
|
|
|
|
2013-04-14 06:54:02 +03:00
|
|
|
struct TexCacheEntry
|
|
|
|
{
|
2013-10-29 07:23:17 +02:00
|
|
|
TexImage0 texImage0;
|
|
|
|
TexImage1 texImage1;
|
|
|
|
TexImage2 texImage2;
|
|
|
|
TexImage3 texImage3;
|
2013-04-14 06:54:02 +03:00
|
|
|
TexTLUT texTlut;
|
2010-06-09 04:37:08 +03:00
|
|
|
|
2013-04-14 06:54:02 +03:00
|
|
|
GLuint texture;
|
2010-06-09 04:37:08 +03:00
|
|
|
|
2013-04-14 06:54:02 +03:00
|
|
|
TexCacheEntry();
|
2010-06-09 04:37:08 +03:00
|
|
|
|
2013-04-14 06:54:02 +03:00
|
|
|
void Create();
|
|
|
|
void Destroy();
|
|
|
|
void Update();
|
|
|
|
};
|
2010-06-09 04:37:08 +03:00
|
|
|
|
2013-04-14 06:54:02 +03:00
|
|
|
typedef std::map<u32, TexCacheEntry> TextureCache;
|
|
|
|
static TextureCache textures;
|
2010-06-09 04:37:08 +03:00
|
|
|
}
|