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>
40 static int Width
= 400;
41 static int Height
= 200;
42 static const GLfloat Near
= 5.0, Far
= 25.0;
45 static void Display( void )
47 glClearColor(0.2, 0.2, 0.8, 0);
48 glClear( GL_COLOR_BUFFER_BIT
);
52 glTranslatef(-4.5, 0, 0);
53 glBlendFunc( GL_ONE
, GL_ZERO
);
55 glColor3f( 0.5 * 0.5, 0.5 * 0.5, 0.5 * 0.5 );
63 glTranslatef(3.0, 0, 0);
64 glBlendFunc( GL_ONE
, GL_ZERO
);
66 glColor3f( 0.5, 0.5, 0.5 );
73 glBlendFunc( GL_DST_COLOR
, GL_ZERO
);
82 glTranslatef(3.0, 0, 0);
83 glBlendFunc( GL_SRC_COLOR
, GL_ZERO
);
92 glTranslatef(3.0, 0, 0);
93 glBlendFunc( GL_ONE
, GL_ZERO
);
101 glBlendFunc( GL_ZERO
, GL_DST_COLOR
);
115 static void Reshape( int width
, int height
)
117 GLfloat ar
= (float) width
/ (float) height
;
120 glViewport( 0, 0, width
, height
);
121 glMatrixMode( GL_PROJECTION
);
123 glFrustum( -ar
, ar
, -1.0, 1.0, Near
, Far
);
124 glMatrixMode( GL_MODELVIEW
);
126 glTranslatef( 0.0, 0.0, -15.0 );
130 static void Key( unsigned char key
, int x
, int y
)
143 static void Init( void )
145 const char * const ver_string
= (const char * const)
146 glGetString( GL_VERSION
);
147 const double version
= strtod( ver_string
, NULL
);
149 printf("GL_RENDERER = %s\n", (char *) glGetString(GL_RENDERER
));
150 printf("GL_VERSION = %s\n", ver_string
);
152 if ( (version
< 1.4) && !glutExtensionSupported("GL_NV_blend_square")) {
153 printf("Sorry, this program requires either OpenGL 1.4 or GL_NV_blend_square\n");
157 printf("\nAll 4 squares should be the same color. The two on the left are drawn\n"
158 "without NV_blend_square functionality, and the two on the right are drawn\n"
159 "with NV_blend_square functionality. If the two on the left are dark, but\n"
160 "the two on the right are not, then NV_blend_square is broken.\n");
161 glEnable( GL_BLEND
);
162 glBlendEquation( GL_FUNC_ADD
);
166 int main( int argc
, char *argv
[] )
168 glutInit( &argc
, argv
);
169 glutInitWindowPosition( 0, 0 );
170 glutInitWindowSize( Width
, Height
);
171 glutInitDisplayMode( GLUT_RGB
| GLUT_DOUBLE
);
172 glutCreateWindow( "GL_NV_blend_square test" );
174 glutReshapeFunc( Reshape
);
175 glutKeyboardFunc( Key
);
176 glutDisplayFunc( Display
);