fileImage.h
  0
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
/*
*  Image.h
*
*  Created by Daisuke Nogami on Sep, 05.
*  opyright 2005 Daisuke Nogami [null-null.net]. Some rights reserved.
*/
 
#pragma once
 
#include <iostream>
#include <GL/glut.h>
 
class Image{
public:
  int width, height;
  GLubyte* data;
 
  Image( char* file, int width, int height );
  ~Image();
};
[トップ] [一覧] [最終更新] [検索] [バックアップ]