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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
|
/**
* @file texrect-many.c
*
* Tests whether the driver can support a full set of rectangle textures.
*
* (Prompted by a bug in R300 where the driver ran out of indirections).
*/
#include "piglit-util.h"
int piglit_width = 16 * 16, piglit_height = 11 * 16;
int piglit_window_mode = GLUT_DOUBLE | GLUT_RGBA | GLUT_ALPHA;
static int NumTextures = 16;
static GLuint Textures[16];
static const GLubyte colors[7][4] = {
{ 0, 0, 0, 255 },
{ 255, 0, 0, 255 },
{ 0, 255, 0, 255 },
{ 0, 0, 255, 255 },
{ 128, 0, 0, 128 },
{ 0, 128, 0, 128 },
{ 0, 0, 128, 128 }
};
static void ActiveTexture(int i)
{
glActiveTexture(GL_TEXTURE0+i);
glClientActiveTexture(GL_TEXTURE0+i);
}
static void DoFrame(void)
{
int i;
glClearColor(0.5, 0.5, 0.0, 0.0);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glColor4f(1,1,1,1);
glBegin(GL_QUADS);
for(i = 0; i < NumTextures; ++i)
glMultiTexCoord2f(GL_TEXTURE0+i, 0, 0);
glVertex2f(0, 0);
for(i = 0; i < NumTextures; ++i)
glMultiTexCoord2f(GL_TEXTURE0+i, 16, 0);
glVertex2f(1, 0);
for(i = 0; i < NumTextures; ++i)
glMultiTexCoord2f(GL_TEXTURE0+i, 16, 11);
glVertex2f(1, 1);
for(i = 0; i < NumTextures; ++i)
glMultiTexCoord2f(GL_TEXTURE0+i, 0, 11);
glVertex2f(0, 1);
glEnd();
}
static bool
DoTest(void)
{
int x, y;
bool pass = true;
for(x = 0; x < NumTextures; ++x) {
for(y = 0; y < 11; ++y) {
float expected[4];
int clr;
int probe_x = (2*x+1) * piglit_width / 32;
int probe_y = (2*y+1) * piglit_height / 22;
clr = (x+y)%7;
expected[0] = colors[clr][0] / 255.0;
expected[1] = colors[clr][1] / 255.0;
expected[2] = colors[clr][2] / 255.0;
expected[3] = colors[clr][3] / 255.0;
pass = pass && piglit_probe_pixel_rgba(probe_x, probe_y,
expected);
}
}
return pass;
}
enum piglit_result
piglit_display(void)
{
int pass;
DoFrame();
pass = DoTest();
glutSwapBuffers();
return pass ? PIGLIT_PASS : PIGLIT_FAIL;
}
static void Reshape(int width, int height)
{
piglit_width = width;
piglit_height = height;
glViewport(0, 0, width, height);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glOrtho(0.0, 1.0, 0.0, 1.0, -1.0, 1.0);
glScalef(1.0, 1.0, -1.0); // flip z-axis
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
}
void piglit_init(int argc, char **argv)
{
int i;
int maxtextures;
if (!GLEW_VERSION_1_3) {
printf("Requires OpenGL 1.3\n");
piglit_report_result(PIGLIT_SKIP);
}
glutReshapeFunc(Reshape);
piglit_require_extension("GL_ARB_texture_rectangle");
glGetIntegerv(GL_MAX_TEXTURE_UNITS, &maxtextures);
if (maxtextures < NumTextures)
NumTextures = maxtextures;
glGenTextures(NumTextures, Textures);
for(i = 0; i < NumTextures; ++i) {
GLubyte tex[11*16*4];
GLubyte* p;
int x, y;
ActiveTexture(i);
glEnable(GL_TEXTURE_RECTANGLE_ARB);
glBindTexture(GL_TEXTURE_RECTANGLE_ARB, Textures[i]);
p = tex;
for(y = 0; y < 11; ++y) {
for(x = 0; x < 16; ++x, p += 4) {
if (x != i) {
p[0] = p[1] = p[2] = p[3] = 255;
} else {
int clr = (x+y)%7;
p[0] = colors[clr][0];
p[1] = colors[clr][1];
p[2] = colors[clr][2];
p[3] = colors[clr][3];
}
}
}
glTexImage2D(GL_TEXTURE_RECTANGLE_ARB, 0, GL_RGBA, 16, 11, 0,
GL_RGBA, GL_UNSIGNED_BYTE, tex);
glTexParameteri(GL_TEXTURE_RECTANGLE_ARB, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
glTexParameteri(GL_TEXTURE_RECTANGLE_ARB, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
}
Reshape(piglit_width, piglit_height);
}
|