2 * (C) Copyright IBM Corporation 2004
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * on the rights to use, copy, modify, merge, publish, distribute, sub
9 * license, and/or sell copies of the Software, and to permit persons to whom
10 * the Software is furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
19 * VA LINUX SYSTEM, IBM AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
21 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
22 * USE OR OTHER DEALINGS IN THE SOFTWARE.
28 * Simple test of GL_NV_blend_square functionality. Four squares are drawn
29 * with different blending modes, but all should be rendered with the same
32 * \author Ian Romanick <idr@us.ibm.com>
39 static int Width
= 400;
40 static int Height
= 200;
41 static const GLfloat Near
= 5.0, Far
= 25.0;
44 static void Display( void )
46 glClearColor(0.2, 0.2, 0.8, 0);
47 glClear( GL_COLOR_BUFFER_BIT
);
51 glTranslatef(-4.5, 0, 0);
52 glBlendFunc( GL_ONE
, GL_ZERO
);
54 glColor3f( 0.5 * 0.5, 0.5 * 0.5, 0.5 * 0.5 );
62 glTranslatef(3.0, 0, 0);
63 glBlendFunc( GL_ONE
, GL_ZERO
);
65 glColor3f( 0.5, 0.5, 0.5 );
72 glBlendFunc( GL_DST_COLOR
, GL_ZERO
);
81 glTranslatef(3.0, 0, 0);
82 glBlendFunc( GL_SRC_COLOR
, GL_ZERO
);
91 glTranslatef(3.0, 0, 0);
92 glBlendFunc( GL_ONE
, GL_ZERO
);
100 glBlendFunc( GL_ZERO
, GL_DST_COLOR
);
114 static void Reshape( int width
, int height
)
116 GLfloat ar
= (float) width
/ (float) height
;
119 glViewport( 0, 0, width
, height
);
120 glMatrixMode( GL_PROJECTION
);
122 glFrustum( -ar
, ar
, -1.0, 1.0, Near
, Far
);
123 glMatrixMode( GL_MODELVIEW
);
125 glTranslatef( 0.0, 0.0, -15.0 );
129 static void Key( unsigned char key
, int x
, int y
)
142 static void Init( void )
144 const char * const ver_string
= (const char * const)
145 glGetString( GL_VERSION
);
146 const double version
= strtod( ver_string
, NULL
);
148 printf("GL_RENDERER = %s\n", (char *) glGetString(GL_RENDERER
));
149 printf("GL_VERSION = %s\n", ver_string
);
151 if ( (version
< 1.4) && !glutExtensionSupported("GL_NV_blend_square")) {
152 printf("Sorry, this program requires either OpenGL 1.4 or GL_NV_blend_square\n");
156 printf("\nAll 4 squares should be the same color. The two on the left are drawn\n"
157 "without NV_blend_square functionality, and the two on the right are drawn\n"
158 "with NV_blend_square functionality. If the two on the left are dark, but\n"
159 "the two on the right are not, then NV_blend_square is broken.\n");
160 glEnable( GL_BLEND
);
161 glBlendEquation( GL_FUNC_ADD
);
165 int main( int argc
, char *argv
[] )
167 glutInit( &argc
, argv
);
168 glutInitWindowPosition( 0, 0 );
169 glutInitWindowSize( Width
, Height
);
170 glutInitDisplayMode( GLUT_RGB
| GLUT_DOUBLE
);
171 glutCreateWindow( "GL_NV_blend_square test" );
172 glutReshapeFunc( Reshape
);
173 glutKeyboardFunc( Key
);
174 glutDisplayFunc( Display
);