File: glgd.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 (37 lines) | stat: -rw-r--r-- 770 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
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
 * glgd.h
 *
 * OpenGL Graph Display library header file
 *
 * Written by: Shawn Taras
 */
#ifndef __GLGD_H__
#define __GLGD_H__

/* Trace output functions (implemented in glgdGraph.c) */
int         glgdVerbosity(int verbosity);
int         glgdTrace(int level, const char *fmt, ...);

#include <gtk/gtk.h>
#include <gtk/gtkgl.h>
#include <gdk/gdkkeysyms.h>
#include <gauche.h>

#ifdef HAVE_GLGD_PANGO
#include <pango/pangoft2.h>
#endif  /* HAVE_GLGD_PANGO */

#include "glgdDefines.h"
#include "glgdTypes.h"
#include "glgdBitfield.h"
#include "glgdStroke.h"
#include "glgdTexture.h"
#include "glgdQuat.h"
#include "glgdMatrix.h"
#include "glgdCam.h"
#include "glgdDraw.h"
#include "glgdNode.h"
#include "glgdLink.h"
#include "glgdGraph.h"

#endif  /* __GLGD_H__ */