2011-11-16 22:17:37 +00:00
|
|
|
/*
|
2013-07-06 10:08:52 +00:00
|
|
|
* Copyright (C) 2011-2013 Gregory hainaut
|
2011-11-16 22:17:37 +00:00
|
|
|
* Copyright (C) 2007-2009 Gabest
|
|
|
|
*
|
|
|
|
* This Program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
* any later version.
|
|
|
|
*
|
|
|
|
* This Program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with GNU Make; see the file COPYING. If not, write to
|
2012-09-09 18:16:11 +00:00
|
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA USA.
|
2011-11-16 22:17:37 +00:00
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "GSDevice.h"
|
|
|
|
#include "GSTextureOGL.h"
|
|
|
|
#include "GSdx.h"
|
2012-05-13 17:09:18 +00:00
|
|
|
#include "GSVertexArrayOGL.h"
|
|
|
|
#include "GSUniformBufferOGL.h"
|
2013-07-06 10:08:52 +00:00
|
|
|
#include "GSShaderOGL.h"
|
2013-08-05 20:25:25 +00:00
|
|
|
#include "GLState.h"
|
2011-11-16 22:17:37 +00:00
|
|
|
|
2015-05-19 22:12:52 +00:00
|
|
|
// A couple of flag to determine the blending behavior
|
|
|
|
#define A_MAX (0x100) // Impossible blending uses coeff bigger than 1
|
|
|
|
#define C_CLR (0x200) // Clear color blending (use directly the destination color as blending factor)
|
|
|
|
#define NO_BAR (0x400) // don't require texture barrier for the blending (because the RT is not used)
|
|
|
|
|
2014-03-24 14:03:02 +00:00
|
|
|
#ifdef ENABLE_OGL_DEBUG_MEM_BW
|
2015-04-25 12:18:21 +00:00
|
|
|
extern uint64 g_real_texture_upload_byte;
|
|
|
|
extern uint64 g_vertex_upload_byte;
|
2014-03-24 14:03:02 +00:00
|
|
|
#endif
|
|
|
|
|
2012-01-03 13:11:40 +00:00
|
|
|
class GSBlendStateOGL {
|
2011-11-16 22:17:37 +00:00
|
|
|
// Note: You can also select the index of the draw buffer for which to set the blend setting
|
|
|
|
// We will keep basic the first try
|
|
|
|
bool m_enable;
|
|
|
|
GLenum m_equation_RGB;
|
2011-11-21 22:36:03 +00:00
|
|
|
GLenum m_func_sRGB;
|
|
|
|
GLenum m_func_dRGB;
|
2015-05-06 06:34:45 +00:00
|
|
|
bool m_constant_factor;
|
2012-01-03 13:11:40 +00:00
|
|
|
|
|
|
|
public:
|
2011-11-26 11:46:51 +00:00
|
|
|
|
|
|
|
GSBlendStateOGL() : m_enable(false)
|
|
|
|
, m_equation_RGB(0)
|
|
|
|
, m_func_sRGB(0)
|
|
|
|
, m_func_dRGB(0)
|
2015-05-06 06:34:45 +00:00
|
|
|
, m_constant_factor(false)
|
2011-11-26 11:46:51 +00:00
|
|
|
{}
|
|
|
|
|
2012-01-03 13:11:40 +00:00
|
|
|
void SetRGB(GLenum op, GLenum src, GLenum dst)
|
|
|
|
{
|
|
|
|
m_equation_RGB = op;
|
|
|
|
m_func_sRGB = src;
|
|
|
|
m_func_dRGB = dst;
|
2015-05-06 06:34:45 +00:00
|
|
|
if (IsConstant(src) || IsConstant(dst)) m_constant_factor = true;
|
2012-01-03 13:11:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void RevertOp()
|
|
|
|
{
|
|
|
|
if(m_equation_RGB == GL_FUNC_ADD)
|
|
|
|
m_equation_RGB = GL_FUNC_REVERSE_SUBTRACT;
|
|
|
|
else if(m_equation_RGB == GL_FUNC_REVERSE_SUBTRACT)
|
|
|
|
m_equation_RGB = GL_FUNC_ADD;
|
|
|
|
}
|
|
|
|
|
|
|
|
void EnableBlend() { m_enable = true;}
|
|
|
|
|
|
|
|
bool IsConstant(GLenum factor) { return ((factor == GL_CONSTANT_COLOR) || (factor == GL_ONE_MINUS_CONSTANT_COLOR)); }
|
|
|
|
|
2015-05-06 06:34:45 +00:00
|
|
|
bool HasConstantFactor() { return m_constant_factor; }
|
2012-01-03 13:11:40 +00:00
|
|
|
|
|
|
|
void SetupBlend(float factor)
|
|
|
|
{
|
2013-08-05 20:25:25 +00:00
|
|
|
if (GLState::blend != m_enable) {
|
|
|
|
GLState::blend = m_enable;
|
|
|
|
if (m_enable)
|
|
|
|
glEnable(GL_BLEND);
|
|
|
|
else
|
|
|
|
glDisable(GL_BLEND);
|
|
|
|
}
|
|
|
|
|
2015-05-08 13:51:46 +00:00
|
|
|
if (m_enable) {
|
2012-01-08 21:59:42 +00:00
|
|
|
if (HasConstantFactor()) {
|
2013-08-05 20:25:25 +00:00
|
|
|
if (GLState::bf != factor) {
|
|
|
|
GLState::bf = factor;
|
|
|
|
gl_BlendColor(factor, factor, factor, 0);
|
|
|
|
}
|
2012-01-08 21:59:42 +00:00
|
|
|
}
|
2012-01-03 13:11:40 +00:00
|
|
|
|
2015-05-05 09:20:25 +00:00
|
|
|
if (GLState::eq_RGB != m_equation_RGB) {
|
2013-08-05 20:25:25 +00:00
|
|
|
GLState::eq_RGB = m_equation_RGB;
|
2015-06-10 20:55:27 +00:00
|
|
|
if (gl_BlendEquationSeparateiARB)
|
|
|
|
gl_BlendEquationSeparateiARB(0, m_equation_RGB, GL_FUNC_ADD);
|
|
|
|
else
|
|
|
|
gl_BlendEquationSeparate(m_equation_RGB, GL_FUNC_ADD);
|
2013-08-05 20:25:25 +00:00
|
|
|
}
|
2015-05-05 09:20:25 +00:00
|
|
|
if (GLState::f_sRGB != m_func_sRGB || GLState::f_dRGB != m_func_dRGB) {
|
2013-08-05 20:25:25 +00:00
|
|
|
GLState::f_sRGB = m_func_sRGB;
|
|
|
|
GLState::f_dRGB = m_func_dRGB;
|
2015-06-10 20:55:27 +00:00
|
|
|
if (gl_BlendFuncSeparateiARB)
|
|
|
|
gl_BlendFuncSeparateiARB(0, m_func_sRGB, m_func_dRGB, GL_ONE, GL_ZERO);
|
|
|
|
else
|
|
|
|
gl_BlendFuncSeparate(m_func_sRGB, m_func_dRGB, GL_ONE, GL_ZERO);
|
2013-08-05 20:25:25 +00:00
|
|
|
}
|
2012-01-03 13:11:40 +00:00
|
|
|
}
|
|
|
|
}
|
2011-11-16 22:17:37 +00:00
|
|
|
};
|
|
|
|
|
2012-01-03 13:11:40 +00:00
|
|
|
class GSDepthStencilOGL {
|
2011-11-16 22:17:37 +00:00
|
|
|
bool m_depth_enable;
|
|
|
|
GLenum m_depth_func;
|
2014-01-26 00:58:21 +00:00
|
|
|
bool m_depth_mask;
|
2011-12-19 21:03:23 +00:00
|
|
|
// Note front face and back might be split but it seems they have same parameter configuration
|
2011-11-16 22:17:37 +00:00
|
|
|
bool m_stencil_enable;
|
2013-08-05 20:25:25 +00:00
|
|
|
GLenum m_stencil_func;
|
|
|
|
GLenum m_stencil_spass_dpass_op;
|
2011-11-26 11:46:51 +00:00
|
|
|
|
2012-01-03 13:11:40 +00:00
|
|
|
public:
|
|
|
|
|
2011-11-26 11:46:51 +00:00
|
|
|
GSDepthStencilOGL() : m_depth_enable(false)
|
2015-06-05 21:26:03 +00:00
|
|
|
, m_depth_func(GL_ALWAYS)
|
2011-11-26 11:46:51 +00:00
|
|
|
, m_depth_mask(0)
|
|
|
|
, m_stencil_enable(false)
|
|
|
|
, m_stencil_func(0)
|
2011-12-19 21:03:23 +00:00
|
|
|
, m_stencil_spass_dpass_op(GL_KEEP)
|
2013-07-19 19:25:50 +00:00
|
|
|
{
|
|
|
|
}
|
2011-12-19 21:03:23 +00:00
|
|
|
|
2012-01-03 13:11:40 +00:00
|
|
|
void EnableDepth() { m_depth_enable = true; }
|
|
|
|
void EnableStencil() { m_stencil_enable = true; }
|
|
|
|
|
2014-01-26 00:58:21 +00:00
|
|
|
void SetDepth(GLenum func, bool mask) { m_depth_func = func; m_depth_mask = mask; }
|
2013-08-05 20:25:25 +00:00
|
|
|
void SetStencil(GLenum func, GLenum pass) { m_stencil_func = func; m_stencil_spass_dpass_op = pass; }
|
2012-01-03 13:11:40 +00:00
|
|
|
|
|
|
|
void SetupDepth()
|
|
|
|
{
|
2013-08-05 20:25:25 +00:00
|
|
|
if (GLState::depth != m_depth_enable) {
|
|
|
|
GLState::depth = m_depth_enable;
|
|
|
|
if (m_depth_enable)
|
|
|
|
glEnable(GL_DEPTH_TEST);
|
|
|
|
else
|
|
|
|
glDisable(GL_DEPTH_TEST);
|
|
|
|
}
|
|
|
|
|
2012-01-03 13:11:40 +00:00
|
|
|
if (m_depth_enable) {
|
2013-08-05 20:25:25 +00:00
|
|
|
if (GLState::depth_func != m_depth_func) {
|
|
|
|
GLState::depth_func = m_depth_func;
|
|
|
|
glDepthFunc(m_depth_func);
|
|
|
|
}
|
|
|
|
if (GLState::depth_mask != m_depth_mask) {
|
|
|
|
GLState::depth_mask = m_depth_mask;
|
2014-01-26 00:58:21 +00:00
|
|
|
glDepthMask((GLboolean)m_depth_mask);
|
2013-08-05 20:25:25 +00:00
|
|
|
}
|
|
|
|
}
|
2012-01-03 13:11:40 +00:00
|
|
|
}
|
|
|
|
|
2013-06-14 11:34:44 +00:00
|
|
|
void SetupStencil()
|
2012-01-03 13:11:40 +00:00
|
|
|
{
|
2013-08-05 20:25:25 +00:00
|
|
|
if (GLState::stencil != m_stencil_enable) {
|
|
|
|
GLState::stencil = m_stencil_enable;
|
|
|
|
if (m_stencil_enable)
|
|
|
|
glEnable(GL_STENCIL_TEST);
|
|
|
|
else
|
|
|
|
glDisable(GL_STENCIL_TEST);
|
|
|
|
}
|
|
|
|
|
2012-01-03 13:11:40 +00:00
|
|
|
if (m_stencil_enable) {
|
2013-06-12 20:57:16 +00:00
|
|
|
// Note: here the mask control which bitplane is considered by the operation
|
2013-08-05 20:25:25 +00:00
|
|
|
if (GLState::stencil_func != m_stencil_func) {
|
|
|
|
GLState::stencil_func = m_stencil_func;
|
|
|
|
glStencilFunc(m_stencil_func, 1, 1);
|
|
|
|
}
|
|
|
|
if (GLState::stencil_pass != m_stencil_spass_dpass_op) {
|
|
|
|
GLState::stencil_pass = m_stencil_spass_dpass_op;
|
|
|
|
glStencilOp(GL_KEEP, GL_KEEP, m_stencil_spass_dpass_op);
|
|
|
|
}
|
|
|
|
}
|
2012-01-03 13:11:40 +00:00
|
|
|
}
|
|
|
|
|
2013-06-16 02:48:16 +00:00
|
|
|
bool IsMaskEnable() { return m_depth_mask != GL_FALSE; }
|
2011-11-16 22:17:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class GSDeviceOGL : public GSDevice
|
|
|
|
{
|
2011-12-19 21:03:23 +00:00
|
|
|
public:
|
|
|
|
__aligned(struct, 32) VSConstantBuffer
|
|
|
|
{
|
2013-06-26 20:09:07 +00:00
|
|
|
GSVector4 Vertex_Scale_Offset;
|
2011-12-19 21:03:23 +00:00
|
|
|
GSVector4 TextureScale;
|
|
|
|
|
|
|
|
VSConstantBuffer()
|
|
|
|
{
|
2013-06-26 20:09:07 +00:00
|
|
|
Vertex_Scale_Offset = GSVector4::zero();
|
2011-12-19 21:03:23 +00:00
|
|
|
TextureScale = GSVector4::zero();
|
|
|
|
}
|
|
|
|
|
|
|
|
__forceinline bool Update(const VSConstantBuffer* cb)
|
|
|
|
{
|
|
|
|
GSVector4i* a = (GSVector4i*)this;
|
|
|
|
GSVector4i* b = (GSVector4i*)cb;
|
|
|
|
|
2014-10-02 18:22:45 +00:00
|
|
|
if(!((a[0] == b[0]) & (a[1] == b[1])).alltrue())
|
2011-12-19 21:03:23 +00:00
|
|
|
{
|
2014-10-02 18:22:45 +00:00
|
|
|
a[0] = b[0];
|
|
|
|
a[1] = b[1];
|
2011-12-19 21:03:23 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct VSSelector
|
|
|
|
{
|
|
|
|
union
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
2015-04-13 16:34:43 +00:00
|
|
|
uint32 wildhack:1;
|
2011-12-19 21:03:23 +00:00
|
|
|
uint32 bppz:2;
|
|
|
|
uint32 tme:1;
|
|
|
|
uint32 fst:1;
|
2015-05-07 16:32:58 +00:00
|
|
|
|
|
|
|
uint32 _free:27;
|
2011-12-19 21:03:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
uint32 key;
|
|
|
|
};
|
|
|
|
|
2015-05-07 16:32:58 +00:00
|
|
|
// FIXME is the & useful ?
|
2015-04-19 16:01:42 +00:00
|
|
|
operator uint32() {return key & 0x3f;}
|
2011-12-19 21:03:23 +00:00
|
|
|
|
|
|
|
VSSelector() : key(0) {}
|
2013-06-26 20:09:07 +00:00
|
|
|
VSSelector(uint32 k) : key(k) {}
|
|
|
|
|
2015-04-19 16:01:42 +00:00
|
|
|
static uint32 size() { return 1 << 5; }
|
2011-12-19 21:03:23 +00:00
|
|
|
};
|
|
|
|
|
2015-07-10 21:59:14 +00:00
|
|
|
struct GSSelector
|
|
|
|
{
|
|
|
|
union
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
uint32 sprite:1;
|
|
|
|
uint32 point:1;
|
|
|
|
|
|
|
|
uint32 _free:30;
|
|
|
|
};
|
|
|
|
|
|
|
|
uint32 key;
|
|
|
|
};
|
|
|
|
|
|
|
|
operator uint32() {return key;}
|
|
|
|
|
|
|
|
GSSelector() : key(0) {}
|
|
|
|
GSSelector(uint32 k) : key(k) {}
|
|
|
|
|
|
|
|
static uint32 size() { return 1 << 2; }
|
|
|
|
};
|
|
|
|
|
2011-12-19 21:03:23 +00:00
|
|
|
__aligned(struct, 32) PSConstantBuffer
|
|
|
|
{
|
|
|
|
GSVector4 FogColor_AREF;
|
|
|
|
GSVector4 WH;
|
|
|
|
GSVector4 MinF_TA;
|
|
|
|
GSVector4i MskFix;
|
2015-06-21 06:47:45 +00:00
|
|
|
GSVector4i FbMask;
|
2015-05-08 18:23:38 +00:00
|
|
|
GSVector4 AlphaCoeff;
|
2011-12-19 21:03:23 +00:00
|
|
|
|
2014-10-07 17:11:43 +00:00
|
|
|
GSVector4 HalfTexel;
|
|
|
|
GSVector4 MinMax;
|
2013-02-23 15:35:56 +00:00
|
|
|
GSVector4 TC_OffsetHack;
|
|
|
|
|
2011-12-19 21:03:23 +00:00
|
|
|
PSConstantBuffer()
|
|
|
|
{
|
|
|
|
FogColor_AREF = GSVector4::zero();
|
2015-06-21 06:47:45 +00:00
|
|
|
HalfTexel = GSVector4::zero();
|
|
|
|
WH = GSVector4::zero();
|
|
|
|
MinMax = GSVector4::zero();
|
|
|
|
MinF_TA = GSVector4::zero();
|
|
|
|
MskFix = GSVector4i::zero();
|
|
|
|
AlphaCoeff = GSVector4::zero();
|
2015-05-11 09:19:18 +00:00
|
|
|
TC_OffsetHack = GSVector4::zero();
|
2015-06-21 06:47:45 +00:00
|
|
|
FbMask = GSVector4i::zero();
|
2011-12-19 21:03:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
__forceinline bool Update(const PSConstantBuffer* cb)
|
|
|
|
{
|
|
|
|
GSVector4i* a = (GSVector4i*)this;
|
|
|
|
GSVector4i* b = (GSVector4i*)cb;
|
|
|
|
|
2013-06-26 20:09:07 +00:00
|
|
|
// if WH matches both HalfTexel and TC_OffsetHack do too
|
2014-10-02 18:22:45 +00:00
|
|
|
// MinMax depends on WH and MskFix so no need to check it too
|
2015-06-21 06:47:45 +00:00
|
|
|
if(!((a[0] == b[0]) & (a[1] == b[1]) & (a[2] == b[2]) & (a[3] == b[3]) & (a[4] == b[4]) & (a[5] == b[5])).alltrue())
|
2011-12-19 21:03:23 +00:00
|
|
|
{
|
2014-10-07 17:11:43 +00:00
|
|
|
// Note previous check uses SSE already, a plain copy will be faster than any memcpy
|
2014-10-02 18:22:45 +00:00
|
|
|
a[0] = b[0];
|
2014-10-07 17:11:43 +00:00
|
|
|
a[1] = b[1];
|
2014-10-02 18:22:45 +00:00
|
|
|
a[2] = b[2];
|
2014-10-07 17:11:43 +00:00
|
|
|
a[3] = b[3];
|
2015-05-08 18:23:38 +00:00
|
|
|
a[4] = b[4];
|
2015-06-21 06:47:45 +00:00
|
|
|
a[5] = b[5];
|
2011-12-19 21:03:23 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct PSSelector
|
|
|
|
{
|
|
|
|
union
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
uint32 fst:1;
|
|
|
|
uint32 fmt:3;
|
|
|
|
uint32 aem:1;
|
|
|
|
uint32 fog:1;
|
|
|
|
uint32 clr1:1;
|
|
|
|
uint32 fba:1;
|
2015-04-24 18:53:59 +00:00
|
|
|
uint32 date:3;
|
2013-02-23 15:35:56 +00:00
|
|
|
uint32 tcoffsethack:1;
|
2015-05-06 06:38:17 +00:00
|
|
|
//uint32 point_sampler:1; Not tested, so keep the bit for blend
|
2013-08-14 10:18:38 +00:00
|
|
|
uint32 iip:1;
|
2013-10-24 20:54:27 +00:00
|
|
|
uint32 colclip:2;
|
|
|
|
uint32 atst:3;
|
|
|
|
uint32 tfx:3;
|
|
|
|
uint32 tcc:1;
|
|
|
|
uint32 wms:2;
|
|
|
|
uint32 wmt:2;
|
|
|
|
uint32 ltf:1;
|
2015-05-24 14:50:01 +00:00
|
|
|
uint32 ifmt:2;
|
2015-06-06 11:56:08 +00:00
|
|
|
uint32 shuffle:1;
|
|
|
|
uint32 read_ba:1;
|
2015-07-19 20:43:48 +00:00
|
|
|
uint32 fbmask:1;
|
2015-05-07 16:32:58 +00:00
|
|
|
|
2015-06-06 11:56:08 +00:00
|
|
|
//uint32 _free1:0;
|
2015-05-19 22:51:37 +00:00
|
|
|
|
|
|
|
// Word 2
|
2015-07-13 13:19:33 +00:00
|
|
|
uint32 blend_a:2;
|
|
|
|
uint32 blend_b:2;
|
|
|
|
uint32 blend_c:2;
|
|
|
|
uint32 blend_d:2;
|
2015-05-26 12:59:07 +00:00
|
|
|
uint32 dfmt:2;
|
|
|
|
|
2015-06-21 06:47:45 +00:00
|
|
|
uint32 _free2:21;
|
2011-12-19 21:03:23 +00:00
|
|
|
};
|
|
|
|
|
2015-05-19 22:51:37 +00:00
|
|
|
uint64 key;
|
2011-12-19 21:03:23 +00:00
|
|
|
};
|
|
|
|
|
2015-05-07 16:32:58 +00:00
|
|
|
// FIXME is the & useful ?
|
2015-05-19 22:51:37 +00:00
|
|
|
operator uint64() {return key;}
|
2011-12-19 21:03:23 +00:00
|
|
|
|
|
|
|
PSSelector() : key(0) {}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct PSSamplerSelector
|
|
|
|
{
|
|
|
|
union
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
uint32 tau:1;
|
|
|
|
uint32 tav:1;
|
|
|
|
uint32 ltf:1;
|
2015-05-07 16:32:58 +00:00
|
|
|
|
|
|
|
uint32 _free:29;
|
2011-12-19 21:03:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
uint32 key;
|
|
|
|
};
|
|
|
|
|
2015-05-07 16:32:58 +00:00
|
|
|
// FIXME is the & useful ?
|
2011-12-19 21:03:23 +00:00
|
|
|
operator uint32() {return key & 0x7;}
|
|
|
|
|
|
|
|
PSSamplerSelector() : key(0) {}
|
2013-06-26 20:09:07 +00:00
|
|
|
PSSamplerSelector(uint32 k) : key(k) {}
|
|
|
|
|
|
|
|
static uint32 size() { return 1 << 3; }
|
2011-12-19 21:03:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct OMDepthStencilSelector
|
|
|
|
{
|
|
|
|
union
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
uint32 ztst:2;
|
|
|
|
uint32 zwe:1;
|
|
|
|
uint32 date:1;
|
2012-08-15 10:14:13 +00:00
|
|
|
uint32 alpha_stencil:1;
|
2015-05-07 16:32:58 +00:00
|
|
|
|
2015-05-11 11:57:26 +00:00
|
|
|
uint32 _free:27;
|
2011-12-19 21:03:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
uint32 key;
|
|
|
|
};
|
|
|
|
|
2015-05-07 16:32:58 +00:00
|
|
|
// FIXME is the & useful ?
|
2015-05-11 11:57:26 +00:00
|
|
|
operator uint32() {return key & 0x1f;}
|
2011-12-19 21:03:23 +00:00
|
|
|
|
|
|
|
OMDepthStencilSelector() : key(0) {}
|
2013-06-26 20:09:07 +00:00
|
|
|
OMDepthStencilSelector(uint32 k) : key(k) {}
|
|
|
|
|
2015-05-11 11:57:26 +00:00
|
|
|
static uint32 size() { return 1 << 5; }
|
2011-12-19 21:03:23 +00:00
|
|
|
};
|
|
|
|
|
2015-05-05 08:26:01 +00:00
|
|
|
struct OMColorMaskSelector
|
|
|
|
{
|
|
|
|
union
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
uint32 wr:1;
|
|
|
|
uint32 wg:1;
|
|
|
|
uint32 wb:1;
|
|
|
|
uint32 wa:1;
|
2015-05-07 16:32:58 +00:00
|
|
|
|
|
|
|
uint32 _free:28;
|
2015-05-05 08:26:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
uint32 wrgba:4;
|
|
|
|
};
|
|
|
|
|
|
|
|
uint32 key;
|
|
|
|
};
|
|
|
|
|
2015-05-07 16:32:58 +00:00
|
|
|
// FIXME is the & useful ?
|
2015-05-05 08:26:01 +00:00
|
|
|
operator uint32() {return key & 0xf;}
|
|
|
|
|
|
|
|
OMColorMaskSelector() : key(0xF) {}
|
2015-05-15 10:52:03 +00:00
|
|
|
OMColorMaskSelector(uint32 c) { wrgba = c; }
|
2015-05-05 08:26:01 +00:00
|
|
|
};
|
|
|
|
|
2011-12-19 21:03:23 +00:00
|
|
|
struct OMBlendSelector
|
|
|
|
{
|
|
|
|
union
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
uint32 abe:1;
|
|
|
|
uint32 a:2;
|
|
|
|
uint32 b:2;
|
|
|
|
uint32 c:2;
|
|
|
|
uint32 d:2;
|
|
|
|
uint32 negative:1;
|
2015-05-07 16:32:58 +00:00
|
|
|
|
|
|
|
uint32 _free:22;
|
2011-12-19 21:03:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
2015-05-05 08:26:01 +00:00
|
|
|
uint32 _abe:1;
|
2011-12-19 21:03:23 +00:00
|
|
|
uint32 abcd:8;
|
2015-05-05 08:26:01 +00:00
|
|
|
uint32 _negative:1;
|
2015-05-07 16:32:58 +00:00
|
|
|
|
|
|
|
uint32 _free2:22;
|
2011-12-19 21:03:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
uint32 key;
|
|
|
|
};
|
|
|
|
|
2015-05-07 16:32:58 +00:00
|
|
|
// FIXME is the & useful ?
|
|
|
|
operator uint32() {return key & 0x3ff;}
|
2011-12-19 21:03:23 +00:00
|
|
|
|
|
|
|
OMBlendSelector() : key(0) {}
|
|
|
|
|
|
|
|
bool IsCLR1() const
|
|
|
|
{
|
|
|
|
return (key & 0x19f) == 0x93; // abe == 1 && a == 1 && b == 2 && d == 1
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct D3D9Blend {int bogus, op, src, dst;};
|
|
|
|
static const D3D9Blend m_blendMapD3D9[3*3*3*3];
|
|
|
|
|
2015-05-16 11:58:36 +00:00
|
|
|
static int s_n;
|
|
|
|
|
2011-12-19 21:03:23 +00:00
|
|
|
private:
|
2011-11-21 22:36:03 +00:00
|
|
|
uint32 m_msaa; // Level of Msaa
|
|
|
|
|
2015-05-07 21:20:01 +00:00
|
|
|
static bool m_debug_gl_call;
|
2015-05-17 12:43:56 +00:00
|
|
|
static FILE* m_debug_gl_file;
|
2015-05-07 21:20:01 +00:00
|
|
|
|
2011-11-21 22:36:03 +00:00
|
|
|
bool m_free_window;
|
2011-12-08 11:17:59 +00:00
|
|
|
GSWnd* m_window;
|
2011-11-16 22:17:37 +00:00
|
|
|
|
2011-11-21 22:36:03 +00:00
|
|
|
GLuint m_fbo; // frame buffer container
|
2012-01-08 21:59:42 +00:00
|
|
|
GLuint m_fbo_read; // frame buffer container only for reading
|
2011-12-15 18:27:58 +00:00
|
|
|
|
2014-10-02 07:33:41 +00:00
|
|
|
GSVertexBufferStateOGL* m_va;// state of the vertex buffer/array
|
2011-11-16 22:17:37 +00:00
|
|
|
|
|
|
|
struct {
|
2011-12-11 19:09:08 +00:00
|
|
|
GLuint ps[2]; // program object
|
|
|
|
GSUniformBufferOGL* cb; // uniform buffer object
|
2011-11-16 22:17:37 +00:00
|
|
|
GSBlendStateOGL* bs;
|
2012-01-08 21:59:42 +00:00
|
|
|
} m_merge_obj;
|
2011-11-16 22:17:37 +00:00
|
|
|
|
|
|
|
struct {
|
2011-11-21 22:36:03 +00:00
|
|
|
GLuint ps[4]; // program object
|
2011-11-16 22:17:37 +00:00
|
|
|
GSUniformBufferOGL* cb; // uniform buffer object
|
|
|
|
} m_interlace;
|
|
|
|
|
2011-11-21 22:36:03 +00:00
|
|
|
struct {
|
2011-11-16 22:17:37 +00:00
|
|
|
GLuint vs; // program object
|
2015-06-27 09:24:16 +00:00
|
|
|
GLuint ps[15]; // program object
|
2011-11-16 22:17:37 +00:00
|
|
|
GLuint ln; // sampler object
|
|
|
|
GLuint pt; // sampler object
|
|
|
|
GSDepthStencilOGL* dss;
|
2015-06-05 21:26:03 +00:00
|
|
|
GSDepthStencilOGL* dss_write;
|
2011-11-16 22:17:37 +00:00
|
|
|
GSBlendStateOGL* bs;
|
2015-06-29 17:17:46 +00:00
|
|
|
GSUniformBufferOGL* cb;
|
2011-11-16 22:17:37 +00:00
|
|
|
} m_convert;
|
|
|
|
|
2012-01-31 17:08:05 +00:00
|
|
|
struct {
|
2011-12-19 21:03:23 +00:00
|
|
|
GLuint ps;
|
|
|
|
GSUniformBufferOGL *cb;
|
|
|
|
} m_fxaa;
|
|
|
|
|
2014-11-09 14:27:24 +00:00
|
|
|
struct {
|
|
|
|
GLuint ps;
|
|
|
|
GSUniformBufferOGL* cb;
|
|
|
|
} m_shaderfx;
|
|
|
|
|
2012-01-31 17:08:05 +00:00
|
|
|
struct {
|
2011-11-16 22:17:37 +00:00
|
|
|
GSDepthStencilOGL* dss;
|
|
|
|
GSBlendStateOGL* bs;
|
2013-07-28 14:40:43 +00:00
|
|
|
GSTexture* t;
|
2011-11-16 22:17:37 +00:00
|
|
|
} m_date;
|
|
|
|
|
2013-08-05 20:25:25 +00:00
|
|
|
struct {
|
2012-04-26 21:42:16 +00:00
|
|
|
GLuint ps;
|
|
|
|
GSUniformBufferOGL *cb;
|
|
|
|
} m_shadeboost;
|
|
|
|
|
2012-01-31 17:08:05 +00:00
|
|
|
struct {
|
2011-11-16 22:17:37 +00:00
|
|
|
GSDepthStencilOGL* dss;
|
|
|
|
GSBlendStateOGL* bs;
|
2013-07-19 19:25:50 +00:00
|
|
|
float bf; // blend factor
|
2011-11-16 22:17:37 +00:00
|
|
|
} m_state;
|
|
|
|
|
2015-04-13 16:34:43 +00:00
|
|
|
GLuint m_vs[1<<6];
|
2015-07-10 21:59:14 +00:00
|
|
|
GLuint m_gs[1<<2];
|
2013-06-26 20:09:07 +00:00
|
|
|
GLuint m_ps_ss[1<<3];
|
|
|
|
GSDepthStencilOGL* m_om_dss[1<<6];
|
2015-05-19 22:51:37 +00:00
|
|
|
hash_map<uint64, GLuint > m_ps;
|
2011-12-19 21:03:23 +00:00
|
|
|
hash_map<uint32, GSBlendStateOGL* > m_om_bs;
|
2013-08-28 08:44:16 +00:00
|
|
|
GLuint m_apitrace;
|
2011-12-19 21:03:23 +00:00
|
|
|
|
|
|
|
GLuint m_palette_ss;
|
|
|
|
GLuint m_rt_ss;
|
|
|
|
|
|
|
|
GSUniformBufferOGL* m_vs_cb;
|
|
|
|
GSUniformBufferOGL* m_ps_cb;
|
2011-11-16 22:17:37 +00:00
|
|
|
|
|
|
|
VSConstantBuffer m_vs_cb_cache;
|
|
|
|
PSConstantBuffer m_ps_cb_cache;
|
|
|
|
|
2011-12-19 21:03:23 +00:00
|
|
|
GSTexture* CreateSurface(int type, int w, int h, bool msaa, int format);
|
|
|
|
GSTexture* FetchSurface(int type, int w, int h, bool msaa, int format);
|
2013-06-14 21:22:44 +00:00
|
|
|
|
2015-05-15 18:49:25 +00:00
|
|
|
void DoMerge(GSTexture* sTex[2], GSVector4* sRect, GSTexture* dTex, GSVector4* dRect, bool slbg, bool mmod, const GSVector4& c);
|
2015-05-15 18:45:31 +00:00
|
|
|
void DoInterlace(GSTexture* sTex, GSTexture* dTex, int shader, bool linear, float yoffset = 0);
|
|
|
|
void DoFXAA(GSTexture* sTex, GSTexture* dTex);
|
|
|
|
void DoShadeBoost(GSTexture* sTex, GSTexture* dTex);
|
|
|
|
void DoExternalFX(GSTexture* sTex, GSTexture* dTex);
|
2011-11-16 22:17:37 +00:00
|
|
|
|
2015-05-12 16:18:04 +00:00
|
|
|
void OMAttachRt(GSTextureOGL* rt = NULL);
|
|
|
|
void OMAttachDs(GSTextureOGL* ds = NULL);
|
2013-07-19 19:25:50 +00:00
|
|
|
void OMSetFBO(GLuint fbo);
|
|
|
|
|
2011-11-16 22:17:37 +00:00
|
|
|
public:
|
2013-08-17 08:57:52 +00:00
|
|
|
GSShaderOGL* m_shader;
|
|
|
|
|
2011-12-19 21:03:23 +00:00
|
|
|
GSDeviceOGL();
|
|
|
|
virtual ~GSDeviceOGL();
|
|
|
|
|
2013-10-24 20:54:27 +00:00
|
|
|
static void CheckDebugLog();
|
2014-09-27 16:57:17 +00:00
|
|
|
static void DebugOutputToFile(GLenum gl_source, GLenum gl_type, GLuint id, GLenum gl_severity, GLsizei gl_length, const GLchar *gl_message, const void* userParam);
|
2011-12-19 21:03:23 +00:00
|
|
|
|
|
|
|
bool HasStencil() { return true; }
|
|
|
|
bool HasDepth32() { return true; }
|
2011-11-16 22:17:37 +00:00
|
|
|
|
2011-12-19 21:03:23 +00:00
|
|
|
bool Create(GSWnd* wnd);
|
|
|
|
bool Reset(int w, int h);
|
|
|
|
void Flip();
|
2012-10-21 18:10:13 +00:00
|
|
|
void SetVSync(bool enable);
|
2011-12-08 16:39:14 +00:00
|
|
|
|
2011-12-19 21:03:23 +00:00
|
|
|
void DrawPrimitive();
|
2012-01-15 17:25:49 +00:00
|
|
|
void DrawIndexedPrimitive();
|
2012-02-11 10:22:02 +00:00
|
|
|
void DrawIndexedPrimitive(int offset, int count);
|
2013-04-19 19:16:26 +00:00
|
|
|
void BeforeDraw();
|
|
|
|
void AfterDraw();
|
2011-12-08 16:39:14 +00:00
|
|
|
|
2011-12-19 21:03:23 +00:00
|
|
|
void ClearRenderTarget(GSTexture* t, const GSVector4& c);
|
|
|
|
void ClearRenderTarget(GSTexture* t, uint32 c);
|
2015-05-02 14:53:34 +00:00
|
|
|
void ClearRenderTarget_i(GSTexture* t, int32 c);
|
2011-12-19 21:03:23 +00:00
|
|
|
void ClearDepth(GSTexture* t, float c);
|
|
|
|
void ClearStencil(GSTexture* t, uint8 c);
|
2011-11-16 22:17:37 +00:00
|
|
|
|
2011-12-19 21:03:23 +00:00
|
|
|
GSTexture* CreateRenderTarget(int w, int h, bool msaa, int format = 0);
|
|
|
|
GSTexture* CreateDepthStencil(int w, int h, bool msaa, int format = 0);
|
|
|
|
GSTexture* CreateTexture(int w, int h, int format = 0);
|
|
|
|
GSTexture* CreateOffscreen(int w, int h, int format = 0);
|
2015-04-24 18:13:38 +00:00
|
|
|
void InitPrimDateTexture(GSTexture* rt);
|
2013-07-28 14:40:43 +00:00
|
|
|
void RecycleDateTexture();
|
2011-11-16 22:17:37 +00:00
|
|
|
|
2015-05-19 10:42:14 +00:00
|
|
|
GSTexture* CopyOffscreen(GSTexture* src, const GSVector4& sRect, int w, int h, int format = 0, int ps_shader = 0);
|
2011-11-16 22:17:37 +00:00
|
|
|
|
2015-05-15 18:45:31 +00:00
|
|
|
void CopyRect(GSTexture* sTex, GSTexture* dTex, const GSVector4i& r);
|
2015-05-15 18:49:25 +00:00
|
|
|
void StretchRect(GSTexture* sTex, const GSVector4& sRect, GSTexture* dTex, const GSVector4& dRect, int shader = 0, bool linear = true);
|
|
|
|
void StretchRect(GSTexture* sTex, const GSVector4& sRect, GSTexture* dTex, const GSVector4& dRect, GLuint ps, bool linear = true);
|
|
|
|
void StretchRect(GSTexture* sTex, const GSVector4& sRect, GSTexture* dTex, const GSVector4& dRect, GLuint ps, GSBlendStateOGL* bs, bool linear = true);
|
2011-11-16 22:17:37 +00:00
|
|
|
|
2014-10-01 19:46:20 +00:00
|
|
|
void SetupDATE(GSTexture* rt, GSTexture* ds, const GSVertexPT1* vertices, bool datm);
|
2011-11-16 22:17:37 +00:00
|
|
|
|
2011-12-19 21:03:23 +00:00
|
|
|
void EndScene();
|
2011-11-21 22:36:03 +00:00
|
|
|
|
2011-12-19 21:03:23 +00:00
|
|
|
void IASetPrimitiveTopology(GLenum topology);
|
|
|
|
void IASetVertexBuffer(const void* vertices, size_t count);
|
2012-01-15 17:25:49 +00:00
|
|
|
void IASetIndexBuffer(const void* index, size_t count);
|
2011-12-15 18:27:58 +00:00
|
|
|
|
2015-05-21 07:48:15 +00:00
|
|
|
void PSSetShaderResource(int i, GSTexture* sr);
|
2015-04-24 17:34:17 +00:00
|
|
|
void PSSetShaderResources(GSTexture* sr0, GSTexture* sr1);
|
2013-08-02 16:38:12 +00:00
|
|
|
void PSSetSamplerState(GLuint ss);
|
2011-11-16 22:17:37 +00:00
|
|
|
|
2011-12-19 21:03:23 +00:00
|
|
|
void OMSetDepthStencilState(GSDepthStencilOGL* dss, uint8 sref);
|
|
|
|
void OMSetBlendState(GSBlendStateOGL* bs, float bf);
|
|
|
|
void OMSetRenderTargets(GSTexture* rt, GSTexture* ds, const GSVector4i* scissor = NULL);
|
2013-07-28 14:40:43 +00:00
|
|
|
void OMSetWriteBuffer(GLenum buffer = GL_COLOR_ATTACHMENT0);
|
2015-05-05 08:26:01 +00:00
|
|
|
void OMSetColorMaskState(OMColorMaskSelector sel = OMColorMaskSelector());
|
|
|
|
|
2011-11-16 22:17:37 +00:00
|
|
|
|
2011-12-19 21:03:23 +00:00
|
|
|
void CreateTextureFX();
|
2015-04-19 16:01:42 +00:00
|
|
|
GLuint CompileVS(VSSelector sel, int logz);
|
2015-07-10 21:59:14 +00:00
|
|
|
GLuint CompileGS(GSSelector sel);
|
2013-06-26 20:09:07 +00:00
|
|
|
GLuint CompilePS(PSSelector sel);
|
|
|
|
GLuint CreateSampler(bool bilinear, bool tau, bool tav);
|
|
|
|
GLuint CreateSampler(PSSamplerSelector sel);
|
|
|
|
GSDepthStencilOGL* CreateDepthStencil(OMDepthStencilSelector dssel);
|
2015-05-26 13:36:48 +00:00
|
|
|
GSBlendStateOGL* CreateBlend(OMBlendSelector bsel, float afix);
|
2013-06-26 20:09:07 +00:00
|
|
|
|
2015-07-15 06:59:16 +00:00
|
|
|
void SelfShaderTest();
|
|
|
|
|
2013-06-26 20:09:07 +00:00
|
|
|
|
2012-01-15 17:25:49 +00:00
|
|
|
void SetupIA(const void* vertex, int vertex_count, const uint32* index, int index_count, int prim);
|
2013-08-10 19:43:59 +00:00
|
|
|
void SetupVS(VSSelector sel);
|
2015-07-10 21:59:14 +00:00
|
|
|
void SetupGS(GSSelector sel);
|
2013-08-10 19:43:59 +00:00
|
|
|
void SetupPS(PSSelector sel);
|
2015-05-06 06:44:27 +00:00
|
|
|
void SetupCB(const VSConstantBuffer* vs_cb, const PSConstantBuffer* ps_cb);
|
2013-08-17 08:57:52 +00:00
|
|
|
void SetupSampler(PSSamplerSelector ssel);
|
2015-05-26 13:36:48 +00:00
|
|
|
void SetupOM(OMDepthStencilSelector dssel, OMBlendSelector bsel, float afix, bool sw_blending = false);
|
2013-08-17 08:57:52 +00:00
|
|
|
GLuint GetSamplerID(PSSamplerSelector ssel);
|
|
|
|
GLuint GetPaletteSamplerID();
|
2013-07-19 19:25:50 +00:00
|
|
|
|
2013-08-02 16:38:12 +00:00
|
|
|
void Barrier(GLbitfield b);
|
2011-11-16 22:17:37 +00:00
|
|
|
};
|