Path: blob/master/libmupen64plus/mupen64plus-video-rice/src/OGLDecodedMux.h
2 views
/*1Copyright (C) 2003 Rice196423This program is free software; you can redistribute it and/or4modify it under the terms of the GNU General Public License5as published by the Free Software Foundation; either version 26of the License, or (at your option) any later version.78This program is distributed in the hope that it will be useful,9but WITHOUT ANY WARRANTY; without even the implied warranty of10MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the11GNU General Public License for more details.1213You should have received a copy of the GNU General Public License14along with this program; if not, write to the Free Software15Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.16*/1718#include "DecodedMux.h"1920#ifndef _OGL_DECODEDMUX_H_21#define _OGL_DECODEDMUX_H_2223class COGLDecodedMux : public DecodedMux24{25protected:26virtual void Simplify(void);27virtual void Reformat(void);28};2930class COGLExtDecodedMux : public COGLDecodedMux31{32protected:33virtual void FurtherFormatForOGL2(void);34virtual void Simplify(void);35};3637class COGLExtDecodedMuxTNT2 : public COGLExtDecodedMux38{39protected:40virtual void FurtherFormatForOGL2(void);41};4243#endif4445464748