2011-11-16 22:17:37 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2011-2011 Gregory hainaut
|
|
|
|
* 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 "GSTexture.h"
|
|
|
|
|
|
|
|
class GSTextureOGL : public GSTexture
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
GLenum m_texture_target; // texture target: 2D, rectangle etc...
|
|
|
|
GLuint m_texture_id; // the texture id
|
2013-01-10 13:13:59 +00:00
|
|
|
uint32 m_pbo_id;
|
2011-12-23 12:32:40 +00:00
|
|
|
int m_pbo_size;
|
2012-01-08 21:59:42 +00:00
|
|
|
GLuint m_fbo_read;
|
2011-11-16 22:17:37 +00:00
|
|
|
|
|
|
|
public:
|
2012-01-08 21:59:42 +00:00
|
|
|
explicit GSTextureOGL(int type, int w, int h, bool msaa, int format, GLuint fbo_read);
|
2011-11-16 22:17:37 +00:00
|
|
|
virtual ~GSTextureOGL();
|
|
|
|
|
|
|
|
bool Update(const GSVector4i& r, const void* data, int pitch);
|
|
|
|
bool Map(GSMap& m, const GSVector4i* r = NULL);
|
|
|
|
void Unmap();
|
|
|
|
bool Save(const string& fn, bool dds = false);
|
2012-01-02 20:08:11 +00:00
|
|
|
void Save(const string& fn, const void* image, uint32 pitch);
|
2011-11-21 22:36:03 +00:00
|
|
|
|
2013-01-10 13:13:59 +00:00
|
|
|
void EnableUnit(uint32 unit);
|
2011-11-21 22:36:03 +00:00
|
|
|
void Attach(GLenum attachment);
|
2013-05-27 18:02:27 +00:00
|
|
|
void AttachRead(GLenum attachment);
|
2011-12-21 23:09:36 +00:00
|
|
|
|
|
|
|
bool IsBackbuffer() { return (m_type == GSTexture::Backbuffer); }
|
2011-12-29 14:24:26 +00:00
|
|
|
bool IsDss() { return (m_type == GSTexture::DepthStencil); }
|
2012-01-31 17:08:05 +00:00
|
|
|
|
|
|
|
GLuint GetID() { return m_texture_id; }
|
2012-03-05 20:16:26 +00:00
|
|
|
GLenum GetTarget() { return m_texture_target; }
|
2011-11-16 22:17:37 +00:00
|
|
|
};
|