summaryrefslogtreecommitdiff
path: root/src/glut/beos/glutOverlay.cpp
blob: eaabb8373ada34926abb20dca6c2d5df51161861 (plain)
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
38
/***********************************************************
 *	Copyright (C) 1997, Be Inc.  All rights reserved.
 *
 *  FILE:	glutOverlay.cpp
 *
 *	DESCRIPTION:	we don't support overlays, so this code is
 *		really simple
 ***********************************************************/

/***********************************************************
 *	Headers
 ***********************************************************/
#include <GL/glut.h>
#include "glutint.h"

void glutEstablishOverlay() {
	__glutFatalError("BeOS lacks overlay support.");
}

void glutUseLayer(GLenum layer) {
	// ignore
}

void glutRemoveOverlay() {
	// ignore
}

void glutPostOverlayRedisplay() {
	// ignore
}

void glutShowOverlay() {
	// ignore
}

void glutHideOverlay() {
	// ignore
}