[ Previous | Next | Contents | Glossary | Home | Search ]
OpenGL 1.1 for AIX: Reference Manual

glIsList Subroutine

Purpose

Tests for display list existence.

Library

OpenGL C bindings library: libGL.a

C Syntax

GLboolean glIsList(GLuint List)

Parameters

List Specifies a potential display-list name.

Description

The glIsList subroutine returns GL_TRUE if the List parameter is the name of a display list and returns GL_FALSE otherwise .

Errors

GL_INVALID_OPERATION The glIsList subroutine is called between a call to glBegin and the corresponding call to glEnd.

Files

/usr/include/GL/gl.h Contains C language constants, variable type definitions, and ANSI function prototypes for OpenGL.

Related Information

The glBegin or glEnd subroutine, glCallList subroutine, glCallLists subroutine, glDeleteLists subroutine, glGenLists subroutine, glNewList subroutine.

OpenGL Overview.


[ Previous | Next | Contents | Glossary | Home | Search ]