2013-04-18 03:29:41 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "VideoBackends/OGL/GLUtil.h"
|
|
|
|
#include "VideoCommon/VideoCommon.h"
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2011-01-29 20:16:51 +00:00
|
|
|
namespace OGL
|
|
|
|
{
|
|
|
|
|
|
|
|
// Converts textures between formats using shaders
|
2008-12-08 04:46:09 +00:00
|
|
|
// TODO: support multiple texture formats
|
|
|
|
namespace TextureConverter
|
|
|
|
{
|
|
|
|
|
|
|
|
void Init();
|
|
|
|
void Shutdown();
|
|
|
|
|
2009-07-15 00:51:24 +00:00
|
|
|
void EncodeToRamYUYV(GLuint srcTexture, const TargetRectangle& sourceRc,
|
2009-02-21 13:53:26 +00:00
|
|
|
u8* destAddr, int dstWidth, int dstHeight);
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2013-08-20 13:11:03 +00:00
|
|
|
void DecodeToTexture(u32 xfbAddr, int srcWidth, int srcHeight, GLuint destTexture);
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2011-12-30 00:00:34 +00:00
|
|
|
// returns size of the encoded data (in bytes)
|
|
|
|
int EncodeToRamFromTexture(u32 address, GLuint source_texture, bool bFromZBuffer, bool bIsIntensityFmt, u32 copyfmt, int bScaleByHalf, const EFBRectangle& source);
|
2010-07-12 19:30:25 +00:00
|
|
|
|
2008-12-08 04:46:09 +00:00
|
|
|
}
|
|
|
|
|
2011-01-29 20:16:51 +00:00
|
|
|
} // namespace OGL
|