filehello.h
  0
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
/*
*  hello.h
*
*  Created by Daisuke Nogami on Nov, 05.
*  opyright 2005 Daisuke Nogami [null-null.net]. Some rights reserved.
*/
 
#pragma once
 
// OpenGL
#include <GL/glut.h>
 
// selfmade class
 
#include "CellSet.h"
static CellSet cellset;
 
#include "AirstreamFilter.h"
static AirstreamFilter asfilter;
 
#include "RainFilter.h"
static RainFilter rfilter;
 
#include "Weather.h"
static Weather weather( &asfilter, &rfilter );
 
#include "MotionFilter.h"
static MotionFilter mfilter;
 
#include "nlTGA32ImageLoader.h"
static nlTGA32ImageLoader onomato_img;
 
#define TEX_NUM 2
static GLuint texName[TEX_NUM];
[トップ] [一覧] [最終更新] [検索] [バックアップ]