36 lines
720 B
C
36 lines
720 B
C
/**************************************************************************
|
|
* tkglkey.h -- handle tkgl keyboard events
|
|
*
|
|
* Written by Curtis Olson, started May 1997.
|
|
*
|
|
* $Id$
|
|
* (Log is kept at end of this file)
|
|
**************************************************************************/
|
|
|
|
|
|
#ifndef TKGLKEY_H
|
|
#define TKGLKEY_H
|
|
|
|
|
|
#ifdef MESA
|
|
/* assumes -I/usr/include/mesa in compile command */
|
|
#include "gltk.h"
|
|
#else
|
|
#include <GL/gl.h>
|
|
#endif
|
|
|
|
/* Handle keyboard events */
|
|
GLenum key(int k, GLenum mask);
|
|
|
|
|
|
#endif TKGLKEY_H
|
|
|
|
|
|
/* $Log$
|
|
/* Revision 1.2 1997/05/17 00:17:34 curt
|
|
/* Trying to stub in support for standard OpenGL.
|
|
/*
|
|
* Revision 1.1 1997/05/16 16:05:53 curt
|
|
* Initial revision.
|
|
*
|
|
*/
|