Unix and Linux Discussions Tagged with program |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
0 |
10,099 |
Linux |
|
|
|
3 |
10,801 |
What is on Your Mind? |
|
|
|
13 |
22,643 |
Programming |
|
|
|
2 |
8,261 |
Shell Programming and Scripting |
|
|
|
2 |
3,454 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
4,356 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
3,403 |
UNIX for Beginners Questions & Answers |
|
|
|
0 |
5,198 |
Programming |
|
|
|
2 |
13,490 |
Homework & Coursework Questions |
|
|
|
11 |
15,785 |
Homework & Coursework Questions |
|
|
|
11 |
3,992 |
Shell Programming and Scripting |
|
|
|
4 |
3,360 |
AIX |
|
|
|
10 |
3,807 |
Shell Programming and Scripting |
|
|
|
3 |
2,111 |
Shell Programming and Scripting |
|
|
|
2 |
3,765 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
2,215 |
Programming |
|
|
|
2 |
6,921 |
UNIX for Advanced & Expert Users |
|
|
|
3 |
6,462 |
UNIX for Advanced & Expert Users |
|
|
|
6 |
8,726 |
Shell Programming and Scripting |
|
|
|
2 |
4,737 |
HP-UX |
|
|
|
12 |
4,997 |
Shell Programming and Scripting |
|
|
|
0 |
2,909 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
3,104 |
Solaris |
|
|
|
3 |
14,386 |
Programming |
|
|
|
7 |
5,034 |
Shell Programming and Scripting |
|
|
|
2 |
8,941 |
Programming |
|
|
|
4 |
3,243 |
Programming |
|
|
|
5 |
9,840 |
Programming |
|
|
|
3 |
8,068 |
Linux |
|
|
|
1 |
3,431 |
Programming |
|
|
|
0 |
1,917 |
UNIX and Linux RSS News |
|
|
|
0 |
2,176 |
Complex Event Processing RSS News |
|
|
|
3 |
10,919 |
Programming |
|
|
|
1 |
5,136 |
Shell Programming and Scripting |
|
|
|
2 |
2,709 |
UNIX for Advanced & Expert Users |
|
|
|
0 |
2,178 |
IT Security RSS |
|
|
|
2 |
3,948 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
2,731 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
2,272 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
32,732 |
UNIX for Dummies Questions & Answers |
GLISPROGRAM(3G) OpenGL 3.3 GLISPROGRAM(3G)
NAME
glIsProgram - Determines if a name corresponds to a program object
C SPECIFICATION
GLboolean glIsProgram(GLuint program);
PARAMETERS
program
Specifies a potential program object.
DESCRIPTION
glIsProgram returns GL_TRUE if program is the name of a program object previously created with glCreateProgram() and not yet deleted with
glDeleteProgram(). If program is zero or a non-zero value that is not the name of a program object, or if an error occurs, glIsProgram
returns GL_FALSE.
NOTES
No error is generated if program is not a valid program object name.
A program object marked for deletion with glDeleteProgram() but still in use as part of current rendering state is still considered a
program object and glIsProgram will return GL_TRUE.
ASSOCIATED GETS
glGet() with the argument GL_CURRENT_PROGRAM
glGetActiveAttrib() with arguments program and the index of an active attribute variable
glGetActiveUniform() with arguments program and the index of an active uniform variable
glGetAttachedShaders() with argument program
glGetAttribLocation() with arguments program and the name of an attribute variable
glGetProgram() with arguments program and the parameter to be queried
glGetProgramInfoLog() with argument program
glGetUniform() with arguments program and the location of a uniform variable
glGetUniformLocation() with arguments program and the name of a uniform variable
SEE ALSO
glAttachShader(), glBindAttribLocation(), glCreateProgram(), glDeleteProgram(), glDetachShader(), glLinkProgram(), glUniform(),
glUseProgram(), glValidateProgram()
COPYRIGHT
Copyright (C) 2003-2005 3Dlabs Inc. Ltd. This material may be distributed subject to the terms and conditions set forth in the Open
Publication License, v 1.0, 8 June 1999. http://opencontent.org/openpub/.
OpenGL 3.3 03/08/2011 GLISPROGRAM(3G)