2 * Copyright (c) 1991, 1992, 1993 Silicon Graphics, Inc.
4 * Permission to use, copy, modify, distribute, and sell this software and
5 * its documentation for any purpose is hereby granted without fee, provided
6 * that (i) the above copyright notices and this permission notice appear in
7 * all copies of the software and related documentation, and (ii) the name of
8 * Silicon Graphics may not be used in any advertising or
9 * publicity relating to the software without the specific, prior written
10 * permission of Silicon Graphics.
12 * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF
14 * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
15 * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
17 * IN NO EVENT SHALL SILICON GRAPHICS BE LIABLE FOR
18 * ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
19 * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
20 * WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
21 * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
25 * Based on the trivial/quad-tex-2d program.
26 * Modified by Jakob Bornecrantz <jakob@tungstengraphics.com>
32 #include <glad/glad.h>
33 #include "glut_wrap.h"
35 static GLenum Target
= GL_TEXTURE_2D
;
36 static GLenum Filter
= GL_NEAREST
;
41 static void Init(void)
46 fprintf(stderr
, "GL_RENDERER = %s\n", (char *) glGetString(GL_RENDERER
));
47 fprintf(stderr
, "GL_VERSION = %s\n", (char *) glGetString(GL_VERSION
));
48 fprintf(stderr
, "GL_VENDOR = %s\n", (char *) glGetString(GL_VENDOR
));
50 glClearColor(0.0, 0.0, 1.0, 0.0);
54 GLubyte tex2d
[SIZE
][SIZE
][4];
57 for (s
= 0; s
< SIZE
; s
++) {
58 for (t
= 0; t
< SIZE
; t
++) {
59 tex2d
[t
][s
][0] = 0xff;
60 tex2d
[t
][s
][1] = 0xff;
61 tex2d
[t
][s
][2] = 0xff;
62 tex2d
[t
][s
][3] = 0xff;
66 internalFormat
= GL_LUMINANCE8
;
67 sourceFormat
= GL_RGBA
;
76 /* GL_UNSIGNED_INT, */
80 glTexEnvf(GL_TEXTURE_ENV
, GL_TEXTURE_ENV_MODE
, GL_REPLACE
);
81 glTexParameterf(Target
, GL_TEXTURE_WRAP_R
, GL_REPEAT
);
82 glTexParameterf(Target
, GL_TEXTURE_MIN_FILTER
, Filter
);
83 glTexParameterf(Target
, GL_TEXTURE_MAG_FILTER
, Filter
);
87 static void Reshape(int width
, int height
)
89 glViewport(0, 0, (GLint
)width
, (GLint
)height
);
90 glMatrixMode(GL_PROJECTION
);
93 glOrtho(-1.0, 1.0, -1.0, 1.0, -0.5, 1000.0);
95 glFrustum(-1, 1, -1, 1, 10, 20);
97 glMatrixMode(GL_MODELVIEW
);
99 glTranslatef(0, 0, -15);
102 static void Key(unsigned char key
, int x
, int y
)
112 glutDestroyWindow(win
);
120 static void Draw(void)
122 glClear(GL_COLOR_BUFFER_BIT
);
125 glRotatef(Rot
, 0, 1, 0);
129 glVertex3f( 0.9, -0.9, 0.0);
131 glVertex3f( 0.9, 0.9, 0.0);
133 glVertex3f(-0.9, 0.9, 0.0);
135 glVertex3f(-0.9, -0.9, 0.0);
147 static GLenum
Args(int argc
, char **argv
)
151 doubleBuffer
= GL_FALSE
;
153 for (i
= 1; i
< argc
; i
++) {
154 if (strcmp(argv
[i
], "-sb") == 0) {
155 doubleBuffer
= GL_FALSE
;
156 } else if (strcmp(argv
[i
], "-db") == 0) {
157 doubleBuffer
= GL_TRUE
;
159 fprintf(stderr
, "%s (Bad option).\n", argv
[i
]);
166 int main(int argc
, char **argv
)
170 glutInit(&argc
, argv
);
172 if (Args(argc
, argv
) == GL_FALSE
) {
176 glutInitWindowPosition(0, 0);
177 glutInitWindowSize(250, 250);
180 type
|= (doubleBuffer
) ? GLUT_DOUBLE
: GLUT_SINGLE
;
181 glutInitDisplayMode(type
);
183 win
= glutCreateWindow("Tex test");
191 glutReshapeFunc(Reshape
);
192 glutKeyboardFunc(Key
);
193 glutDisplayFunc(Draw
);