Merge remote branch 'upstream/gallium-0.1' into nouveau-gallium-0.1
[mesa.git] / progs / tests / arbnpot-mipmap.c
1
2 /* Copyright (c) Mark J. Kilgard, 1994. */
3
4 /*
5 * (c) Copyright 1993, Silicon Graphics, Inc.
6 * ALL RIGHTS RESERVED
7 * Permission to use, copy, modify, and distribute this software for
8 * any purpose and without fee is hereby granted, provided that the above
9 * copyright notice appear in all copies and that both the copyright notice
10 * and this permission notice appear in supporting documentation, and that
11 * the name of Silicon Graphics, Inc. not be used in advertising
12 * or publicity pertaining to distribution of the software without specific,
13 * written prior permission.
14 *
15 * THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS"
16 * AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE,
17 * INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR
18 * FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON
19 * GRAPHICS, INC. BE LIABLE TO YOU OR ANYONE ELSE FOR ANY DIRECT,
20 * SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY
21 * KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION,
22 * LOSS OF PROFIT, LOSS OF USE, SAVINGS OR REVENUE, OR THE CLAIMS OF
23 * THIRD PARTIES, WHETHER OR NOT SILICON GRAPHICS, INC. HAS BEEN
24 * ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON
25 * ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE
26 * POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE.
27 *
28 * US Government Users Restricted Rights
29 * Use, duplication, or disclosure by the Government is subject to
30 * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph
31 * (c)(1)(ii) of the Rights in Technical Data and Computer Software
32 * clause at DFARS 252.227-7013 and/or in similar or successor
33 * clauses in the FAR or the DOD or NASA FAR Supplement.
34 * Unpublished-- rights reserved under the copyright laws of the
35 * United States. Contractor/manufacturer is Silicon Graphics,
36 * Inc., 2011 N. Shoreline Blvd., Mountain View, CA 94039-7311.
37 *
38 * OpenGL(TM) is a trademark of Silicon Graphics, Inc.
39 */
40 /* mipmap.c
41 * This program demonstrates using mipmaps for texture maps.
42 * To overtly show the effect of mipmaps, each mipmap reduction
43 * level has a solidly colored, contrasting texture image.
44 * Thus, the quadrilateral which is drawn is drawn with several
45 * different colors.
46 */
47 #include <stdlib.h>
48 #include <stdio.h>
49 #include <GL/glut.h>
50
51 GLubyte mipmapImage32[40][46][3];
52 GLubyte mipmapImage16[20][23][3];
53 GLubyte mipmapImage8[10][11][3];
54 GLubyte mipmapImage4[5][5][3];
55 GLubyte mipmapImage2[2][2][3];
56 GLubyte mipmapImage1[1][1][3];
57
58 static void makeImages(void)
59 {
60 int i, j;
61
62 for (i = 0; i < 40; i++) {
63 for (j = 0; j < 46; j++) {
64 mipmapImage32[i][j][0] = 255;
65 mipmapImage32[i][j][1] = 255;
66 mipmapImage32[i][j][2] = 0;
67 }
68 }
69 for (i = 0; i < 20; i++) {
70 for (j = 0; j < 23; j++) {
71 mipmapImage16[i][j][0] = 255;
72 mipmapImage16[i][j][1] = 0;
73 mipmapImage16[i][j][2] = 255;
74 }
75 }
76 for (i = 0; i < 10; i++) {
77 for (j = 0; j < 11; j++) {
78 mipmapImage8[i][j][0] = 255;
79 mipmapImage8[i][j][1] = 0;
80 mipmapImage8[i][j][2] = 0;
81 }
82 }
83 for (i = 0; i < 5; i++) {
84 for (j = 0; j < 5; j++) {
85 mipmapImage4[i][j][0] = 0;
86 mipmapImage4[i][j][1] = 255;
87 mipmapImage4[i][j][2] = 0;
88 }
89 }
90 for (i = 0; i < 2; i++) {
91 for (j = 0; j < 2; j++) {
92 mipmapImage2[i][j][0] = 0;
93 mipmapImage2[i][j][1] = 0;
94 mipmapImage2[i][j][2] = 255;
95 }
96 }
97 mipmapImage1[0][0][0] = 255;
98 mipmapImage1[0][0][1] = 255;
99 mipmapImage1[0][0][2] = 255;
100 }
101
102 static void myinit(void)
103 {
104 if (!glutExtensionSupported("GL_ARB_texture_non_power_of_two")) {
105 printf("Sorry, this program requires GL_ARB_texture_non_power_of_two\n");
106 exit(1);
107 }
108
109 glEnable(GL_DEPTH_TEST);
110 glDepthFunc(GL_LESS);
111 glShadeModel(GL_FLAT);
112
113 glTranslatef(0.0, 0.0, -3.6);
114 makeImages();
115 glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
116 glTexImage2D(GL_TEXTURE_2D, 0, 3, 40, 46, 0,
117 GL_RGB, GL_UNSIGNED_BYTE, &mipmapImage32[0][0][0]);
118 glTexImage2D(GL_TEXTURE_2D, 1, 3, 20, 23, 0,
119 GL_RGB, GL_UNSIGNED_BYTE, &mipmapImage16[0][0][0]);
120 glTexImage2D(GL_TEXTURE_2D, 2, 3, 10, 11, 0,
121 GL_RGB, GL_UNSIGNED_BYTE, &mipmapImage8[0][0][0]);
122 glTexImage2D(GL_TEXTURE_2D, 3, 3, 5, 5, 0,
123 GL_RGB, GL_UNSIGNED_BYTE, &mipmapImage4[0][0][0]);
124 glTexImage2D(GL_TEXTURE_2D, 4, 3, 2, 2, 0,
125 GL_RGB, GL_UNSIGNED_BYTE, &mipmapImage2[0][0][0]);
126 glTexImage2D(GL_TEXTURE_2D, 5, 3, 1, 1, 0,
127 GL_RGB, GL_UNSIGNED_BYTE, &mipmapImage1[0][0][0]);
128 glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
129 glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
130 glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
131 glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER,
132 GL_NEAREST_MIPMAP_NEAREST);
133 glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_DECAL);
134 glEnable(GL_TEXTURE_2D);
135 }
136
137 static void display(void)
138 {
139 glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
140 glBegin(GL_QUADS);
141 glTexCoord2f(0.0, 0.0); glVertex3f(-2.0, -1.0, 0.0);
142 glTexCoord2f(0.0, 8.0); glVertex3f(-2.0, 1.0, 0.0);
143 glTexCoord2f(8.0, 8.0); glVertex3f(2000.0, 1.0, -6000.0);
144 glTexCoord2f(8.0, 0.0); glVertex3f(2000.0, -1.0, -6000.0);
145 glEnd();
146 glFlush();
147 }
148
149 static void myReshape(int w, int h)
150 {
151 glViewport(0, 0, w, h);
152 glMatrixMode(GL_PROJECTION);
153 glLoadIdentity();
154 gluPerspective(60.0, 1.0*(GLfloat)w/(GLfloat)h, 1.0, 30000.0);
155 glMatrixMode(GL_MODELVIEW);
156 glLoadIdentity();
157 }
158
159 static void
160 key(unsigned char k, int x, int y)
161 {
162 switch (k) {
163 case 27: /* Escape */
164 exit(0);
165 break;
166 default:
167 return;
168 }
169 glutPostRedisplay();
170 }
171
172 int main(int argc, char** argv)
173 {
174 glutInit(&argc, argv);
175 glutInitDisplayMode (GLUT_SINGLE | GLUT_RGB | GLUT_DEPTH);
176 glutInitWindowSize (500, 500);
177 glutCreateWindow (argv[0]);
178 myinit();
179 glutReshapeFunc (myReshape);
180 glutDisplayFunc(display);
181 glutKeyboardFunc(key);
182 glutMainLoop();
183 return 0; /* ANSI C requires main to return int. */
184 }