132001f49Smrg/*
232001f49Smrg * Copyright (c) 1993-1997, Silicon Graphics, Inc.
332001f49Smrg * ALL RIGHTS RESERVED
432001f49Smrg * Permission to use, copy, modify, and distribute this software for
532001f49Smrg * any purpose and without fee is hereby granted, provided that the above
632001f49Smrg * copyright notice appear in all copies and that both the copyright notice
732001f49Smrg * and this permission notice appear in supporting documentation, and that
832001f49Smrg * the name of Silicon Graphics, Inc. not be used in advertising
932001f49Smrg * or publicity pertaining to distribution of the software without specific,
1032001f49Smrg * written prior permission.
1132001f49Smrg *
1232001f49Smrg * THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS"
1332001f49Smrg * AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE,
1432001f49Smrg * INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR
1532001f49Smrg * FITNESS FOR A PARTICULAR PURPOSE.  IN NO EVENT SHALL SILICON
1632001f49Smrg * GRAPHICS, INC.  BE LIABLE TO YOU OR ANYONE ELSE FOR ANY DIRECT,
1732001f49Smrg * SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY
1832001f49Smrg * KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION,
1932001f49Smrg * LOSS OF PROFIT, LOSS OF USE, SAVINGS OR REVENUE, OR THE CLAIMS OF
2032001f49Smrg * THIRD PARTIES, WHETHER OR NOT SILICON GRAPHICS, INC.  HAS BEEN
2132001f49Smrg * ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON
2232001f49Smrg * ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE
2332001f49Smrg * POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE.
2432001f49Smrg *
2532001f49Smrg * US Government Users Restricted Rights
2632001f49Smrg * Use, duplication, or disclosure by the Government is subject to
2732001f49Smrg * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph
2832001f49Smrg * (c)(1)(ii) of the Rights in Technical Data and Computer Software
2932001f49Smrg * clause at DFARS 252.227-7013 and/or in similar or successor
3032001f49Smrg * clauses in the FAR or the DOD or NASA FAR Supplement.
3132001f49Smrg * Unpublished-- rights reserved under the copyright laws of the
3232001f49Smrg * United States.  Contractor/manufacturer is Silicon Graphics,
3332001f49Smrg * Inc., 2011 N.  Shoreline Blvd., Mountain View, CA 94039-7311.
3432001f49Smrg *
3532001f49Smrg * OpenGL(R) is a registered trademark of Silicon Graphics, Inc.
3632001f49Smrg */
3732001f49Smrg
3832001f49Smrg/*
3932001f49Smrg *  texprox.c
4032001f49Smrg *  The brief program illustrates use of texture proxies.
4132001f49Smrg *  This program only prints out some messages about whether
4232001f49Smrg *  certain size textures are supported and then exits.
4332001f49Smrg */
4432001f49Smrg#include "glut_wrap.h"
4532001f49Smrg#include <stdlib.h>
4632001f49Smrg#include <stdio.h>
4732001f49Smrg
4832001f49Smrg#ifdef GL_VERSION_1_1
4932001f49Smrg
5032001f49Smrg/* Microsoft OpenGL 1.1's <GL/gl.h> forgets to define
5132001f49Smrg   GL_TEXTURE_INTERNAL_FORMAT. */
5232001f49Smrg#ifndef GL_TEXTURE_INTERNAL_FORMAT
5332001f49Smrg#define GL_TEXTURE_INTERNAL_FORMAT GL_TEXTURE_COMPONENTS
5432001f49Smrg#endif
5532001f49Smrg
5632001f49Smrgstatic void init(void)
5732001f49Smrg{
5832001f49Smrg   GLint proxyComponents;
5932001f49Smrg
6032001f49Smrg   putchar('\n');
6132001f49Smrg
6232001f49Smrg   glTexImage2D(GL_PROXY_TEXTURE_2D, 0, GL_RGBA8,
6332001f49Smrg                64, 64, 0,
6432001f49Smrg                GL_RGBA, GL_UNSIGNED_BYTE, NULL);
6532001f49Smrg   glGetTexLevelParameteriv(GL_PROXY_TEXTURE_2D, 0,
6632001f49Smrg                            GL_TEXTURE_INTERNAL_FORMAT, &proxyComponents);
6732001f49Smrg   printf ("Proxying 64x64 level 0 RGBA8 texture (level 0)\n");
6832001f49Smrg   if (proxyComponents == GL_RGBA8)
6932001f49Smrg      printf ("proxy allocation succeeded\n");
7032001f49Smrg   else
7132001f49Smrg      printf ("proxy allocation failed\n");
7232001f49Smrg   putchar('\n');
7332001f49Smrg
7432001f49Smrg   glTexImage2D(GL_PROXY_TEXTURE_2D, 0, GL_RGBA16,
7532001f49Smrg                2048, 2048, 0,
7632001f49Smrg                GL_RGBA, GL_UNSIGNED_SHORT, NULL);
7732001f49Smrg   glGetTexLevelParameteriv(GL_PROXY_TEXTURE_2D, 0,
7832001f49Smrg                            GL_TEXTURE_INTERNAL_FORMAT, &proxyComponents);
7932001f49Smrg   printf ("Proxying 2048x2048 level 0 RGBA16 texture (big so unlikely to be supported)\n");
8032001f49Smrg   if (proxyComponents == GL_RGBA16)
8132001f49Smrg      printf ("proxy allocation succeeded\n");
8232001f49Smrg   else
8332001f49Smrg      printf ("proxy allocation failed\n");
8432001f49Smrg   putchar('\n');
8532001f49Smrg}
8632001f49Smrg
8732001f49Smrgstatic void display(void)
8832001f49Smrg{
8932001f49Smrg   exit(0);
9032001f49Smrg}
9132001f49Smrg
9232001f49Smrgstatic void reshape (int w, int h)
9332001f49Smrg{
9432001f49Smrg   glViewport (0, 0, (GLsizei) w, (GLsizei) h);
9532001f49Smrg   glMatrixMode (GL_PROJECTION);
9632001f49Smrg   glLoadIdentity ();
9732001f49Smrg}
9832001f49Smrg
9932001f49Smrgint main(int argc, char** argv)
10032001f49Smrg{
10132001f49Smrg   glutInit(&argc, argv);
10232001f49Smrg   glutInitDisplayMode (GLUT_SINGLE | GLUT_RGB);
10332001f49Smrg   glutInitWindowSize (500, 500);
10432001f49Smrg   glutInitWindowPosition (100, 100);
10532001f49Smrg   glutCreateWindow (argv[0]);
10632001f49Smrg   init ();
10732001f49Smrg   glutDisplayFunc(display);
10832001f49Smrg   glutReshapeFunc(reshape);
10932001f49Smrg   glutMainLoop();
11032001f49Smrg   return 0;
11132001f49Smrg}
11232001f49Smrg#else
11332001f49Smrgint main(int argc, char** argv)
11432001f49Smrg{
11532001f49Smrg    fprintf (stderr, "This program demonstrates a feature which is not in OpenGL Version 1.0.\n");
11632001f49Smrg    fprintf (stderr, "If your implementation of OpenGL Version 1.0 has the right extensions,\n");
11732001f49Smrg    fprintf (stderr, "you may be able to modify this program to make it run.\n");
11832001f49Smrg    return 0;
11932001f49Smrg}
12032001f49Smrg#endif
121