00001 /* 00002 Copyright (C) 2002 Malte Weiß, Carsten Winkelholz 00003 00004 Malte Weiß, 20.08.2002: OpenGL for native node developed. 00005 22.08.2002: Field 'culling' regarded. 00006 00007 Address: FGAN Forschungsgesellschaft für Angewandte Naturwissenschaften e. V. 00008 Neuenahrer Str. 20 00009 D - 53343 Wachtberg 00010 00011 Email: winkelholz@fgan.de 00012 00013 This program is free software; you can redistribute it and/or 00014 modify it under the terms of the GNU General Public License 00015 as published by the Free Software Foundation; either version 2 00016 of the License, or (at your option) any later version. 00017 00018 This program is distributed in the hope that it will be useful, 00019 but WITHOUT ANY WARRANTY; without even the implied warranty of 00020 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00021 GNU General Public License for more details. 00022 00023 You should have received a copy of the GNU General Public License 00024 along with this program; if not, write to the Free Software 00025 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00026 */ 00027 00028 #ifndef CYBGLWATERC_H 00029 #define CYBGLWATERC_H 00030 00031 #include "oaw/ctk/cybwaterc.h" 00032 #include "../oawconfig.h" 00033 00034 OAW_BEGIN_NAMESPACE 00035 00036 // Class definition 00037 00038 class OAW_DLLMAPPING CybGLWaterC : public CybWaterC 00039 { 00040 public: 00041 CybGLWaterC(CybWorldC*); 00042 CybGLWaterC(const CybGLWaterC&); 00043 CybGLWaterC&operator=(const CybGLWaterC&); 00044 virtual ~CybGLWaterC(); 00045 00046 virtual void FinishInit(); 00047 virtual void ToChannelDefault(CybChannelC*, long lFlag); 00048 virtual void ToChannelTexture(CybChannelC*, long lFlag); 00049 00050 protected: 00051 virtual void CleanupRender(); 00052 }; 00053 00054 OAW_END_NAMESPACE 00055 00056 #endif
1.3-rc2