File: glgdTypes.h

package info (click to toggle)
gauche-gtk 0.6%2Bgit20160927-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,452 kB
  • sloc: ansic: 7,097; lisp: 5,659; sh: 2,829; makefile: 338
file content (24 lines) | stat: -rw-r--r-- 398 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * glgdTypes.h
 *
 * OpenGL Graph Display library common type definitions
 *
 * Written by: Shawn Taras
 */
#ifndef __GLGDTYPES_H__
#define __GLGDTYPES_H__

SCM_DECL_BEGIN

/*
 * Type Definitions
 */
typedef GLdouble        glgdVec2[2];
typedef GLdouble        glgdVec3[3];
typedef GLdouble        glgdVec4[4];
typedef GLdouble        glgdColor[4];

SCM_DECL_END

#endif  /* __GLGDTYPES_H__ */