File: glut_glutget.c

package info (click to toggle)
emscripten 3.1.69%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 121,872 kB
  • sloc: ansic: 636,110; cpp: 425,974; javascript: 78,401; python: 58,404; sh: 49,154; pascal: 5,237; makefile: 3,365; asm: 2,415; lisp: 1,869
file content (56 lines) | stat: -rw-r--r-- 1,711 bytes parent folder | download | duplicates (3)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// Copyright 2018 The Emscripten Authors.  All rights reserved.
// Emscripten is available under two separate licenses, the MIT license and the
// University of Illinois/NCSA Open Source License.  Both these licenses can be
// found in the LICENSE file.

#include <assert.h>
#include <stdio.h>
#include <stdbool.h>
#include <GL/gl.h>
#include <GL/glut.h>

int main(int argc, char* argv[]) {
  bool stencilActivated = false;
  bool depthActivated = false;
  bool alphaActivated = false;
  bool antiAliasingActivated = false;

  unsigned int mode = GLUT_RGBA | GLUT_DOUBLE;

#ifdef STENCIL_ACTIVATED
    stencilActivated = true;
    mode |= GLUT_STENCIL;
#endif
#ifdef DEPTH_ACTIVATED
    depthActivated = true;
    mode |= GLUT_DEPTH;
#endif
#ifdef ALPHA_ACTIVATED
    alphaActivated = true;
    mode |= GLUT_ALPHA;
#endif
#ifdef AA_ACTIVATED
    antiAliasingActivated = true;
    mode |= GLUT_MULTISAMPLE;
#endif

  glutInit(&argc, argv);
  glutInitWindowSize(640, 480);
  glutInitDisplayMode(mode);
  glutCreateWindow(__FILE__);

  printf("stencil:   %d\n", glutGet(GLUT_WINDOW_STENCIL_SIZE));
  printf("depth:     %d\n", glutGet(GLUT_WINDOW_DEPTH_SIZE));
  printf("alpha:     %d\n", glutGet(GLUT_WINDOW_ALPHA_SIZE));
  printf("antialias: %d\n", glutGet(GLUT_WINDOW_NUM_SAMPLES));
  assert(!stencilActivated      || glutGet(GLUT_WINDOW_STENCIL_SIZE) > 0);
  assert(!depthActivated        || glutGet(GLUT_WINDOW_DEPTH_SIZE)   > 0);
  assert(!alphaActivated        || glutGet(GLUT_WINDOW_ALPHA_SIZE)   > 0);
  assert(!antiAliasingActivated || glutGet(GLUT_WINDOW_NUM_SAMPLES)  > 0);

  // fix-up "ReferenceError: GL is not defined,createContext" due to
  // overzealous JS stripping
  glClear(0);

  return 0;
}