HaikuDepot: notify work status from main window
[haiku.git] / src / libs / glut / glutColor.cpp
blobd9f7739ae5a721569b538f1c7788d528f54d17c4
1 /***********************************************************
2 * Copyright (C) 1997, Be Inc. Copyright (C) 1999, Jake Hamby.
4 * This program is freely distributable without licensing fees
5 * and is provided without guarantee or warrantee expressed or
6 * implied. This program is -not- in the public domain.
9 * FILE: glutColor.cpp
11 * DESCRIPTION: we don't support indexed color, so this code is
12 * really simple
13 ***********************************************************/
15 /***********************************************************
16 * Headers
17 ***********************************************************/
18 #include <GL/glut.h>
19 #include "glutint.h"
21 void glutSetColor(int cell, GLfloat red, GLfloat green, GLfloat blue) {
22 __glutWarning("glutSetColor: current window is RGBA");
25 GLfloat glutGetColor(int cell, int component) {
26 __glutWarning("glutGetColor: current window is RGBA");
27 return -1.0;
30 void glutCopyColormap(int win) {
31 __glutWarning("glutCopyColormap: color index not supported in BeOS");