2010-04-25 00:31:27 +00:00
|
|
|
/*
|
2009-02-09 21:15:56 +00:00
|
|
|
* Copyright (C) 2007-2009 Gabest
|
|
|
|
* http://www.gabest.org
|
|
|
|
*
|
|
|
|
* 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.
|
2010-04-25 00:31:27 +00:00
|
|
|
*
|
2009-02-09 21:15:56 +00:00
|
|
|
* 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.
|
2010-04-25 00:31:27 +00:00
|
|
|
*
|
2009-02-09 21:15:56 +00:00
|
|
|
* 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.
|
2009-02-09 21:15:56 +00:00
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2011-02-19 03:36:30 +00:00
|
|
|
#include "stdafx.h"
|
2009-02-09 21:15:56 +00:00
|
|
|
#include "GSTexture.h"
|
2009-08-02 23:07:30 +00:00
|
|
|
|
2010-04-25 00:31:27 +00:00
|
|
|
GSTexture::GSTexture()
|
2009-08-02 23:07:30 +00:00
|
|
|
: m_scale(1, 1)
|
|
|
|
, m_size(0, 0)
|
2019-02-07 11:11:47 +00:00
|
|
|
, m_committed_size(0, 0)
|
|
|
|
, m_gpu_page_size(0, 0)
|
2011-02-23 09:16:00 +00:00
|
|
|
, m_type(0)
|
2015-09-11 10:19:49 +00:00
|
|
|
, m_format(0)
|
2019-02-07 11:11:47 +00:00
|
|
|
, m_sparse(false)
|
2015-09-11 10:19:49 +00:00
|
|
|
, last_frame_used(0)
|
2011-02-07 01:59:05 +00:00
|
|
|
, LikelyOffset(false)
|
2015-09-11 10:19:49 +00:00
|
|
|
, OffsetHack_modx(0.0f)
|
|
|
|
, OffsetHack_mody(0.0f)
|
2009-08-02 23:07:30 +00:00
|
|
|
{
|
|
|
|
}
|
2019-02-07 11:11:47 +00:00
|
|
|
|
|
|
|
void GSTexture::CommitRegion(const GSVector2i& region)
|
|
|
|
{
|
|
|
|
if (!m_sparse)
|
|
|
|
return;
|
|
|
|
|
|
|
|
GSVector2i aligned_region = RoundUpPage(region);
|
|
|
|
aligned_region.x = std::max(m_committed_size.x, aligned_region.x);
|
|
|
|
aligned_region.y = std::max(m_committed_size.y, aligned_region.y);
|
|
|
|
if (aligned_region != m_committed_size)
|
|
|
|
CommitPages(aligned_region, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GSTexture::Commit()
|
|
|
|
{
|
|
|
|
if (!m_sparse)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (m_committed_size != m_size)
|
|
|
|
CommitPages(m_size, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GSTexture::Uncommit()
|
|
|
|
{
|
|
|
|
if (!m_sparse)
|
|
|
|
return;
|
|
|
|
|
|
|
|
GSVector2i zero = GSVector2i(0, 0);
|
|
|
|
|
|
|
|
if (m_committed_size != zero)
|
|
|
|
CommitPages(m_committed_size, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GSTexture::SetGpuPageSize(const GSVector2i& page_size)
|
|
|
|
{
|
|
|
|
ASSERT(std::bitset<32>(page_size.x + 1).count() == 1);
|
|
|
|
ASSERT(std::bitset<32>(page_size.y + 1).count() == 1);
|
|
|
|
|
|
|
|
m_gpu_page_size = page_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
GSVector2i GSTexture::RoundUpPage(GSVector2i v)
|
|
|
|
{
|
|
|
|
v.x = std::min(m_size.x, v.x);
|
|
|
|
v.y = std::min(m_size.y, v.y);
|
|
|
|
v.x += m_gpu_page_size.x;
|
|
|
|
v.y += m_gpu_page_size.y;
|
|
|
|
v.x &= ~m_gpu_page_size.x;
|
|
|
|
v.y &= ~m_gpu_page_size.y;
|
|
|
|
|
|
|
|
return v;
|
|
|
|
}
|