Fixed package name
[cl-glfw.git] / lib / opengl-pgi_misc_hints.lisp
blobd6b6c71117b84c18e536d0a31b1cc762ad156598
2 (in-package #:gl)
4 ;;;; PGI_misc_hints
6 (defconstant +prefer-doublebuffer-hint-pgi+ #x1A1F8)
7 (defconstant +conserve-memory-hint-pgi+ #x1A1FD)
8 (defconstant +reclaim-memory-hint-pgi+ #x1A1FE)
9 (defconstant +native-graphics-handle-pgi+ #x1A202)
10 (defconstant +native-graphics-begin-hint-pgi+ #x1A203)
11 (defconstant +native-graphics-end-hint-pgi+ #x1A204)
12 (defconstant +always-fast-hint-pgi+ #x1A20C)
13 (defconstant +always-soft-hint-pgi+ #x1A20D)
14 (defconstant +allow-draw-obj-hint-pgi+ #x1A20E)
15 (defconstant +allow-draw-win-hint-pgi+ #x1A20F)
16 (defconstant +allow-draw-frg-hint-pgi+ #x1A210)
17 (defconstant +allow-draw-mem-hint-pgi+ #x1A211)
18 (defconstant +strict-depthfunc-hint-pgi+ #x1A216)
19 (defconstant +strict-lighting-hint-pgi+ #x1A217)
20 (defconstant +strict-scissor-hint-pgi+ #x1A218)
21 (defconstant +full-stipple-hint-pgi+ #x1A219)
22 (defconstant +clip-near-hint-pgi+ #x1A220)
23 (defconstant +clip-far-hint-pgi+ #x1A221)
24 (defconstant +wide-line-hint-pgi+ #x1A222)
25 (defconstant +back-normals-hint-pgi+ #x1A223)
26 (defglextfun
27 (("HintPGI" hint-pgi) :args
28 ((:name |target| :type |HintTargetPGI| :direction :in)
29 (:name |mode| :type |Int32| :direction :in))
30 :return ("void") :category ("PGI_misc_hints") :version ("1.1") :offset
31 ("544") :glsopcode ("0x01D0")))