Unix and Linux Discussions Tagged with program |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
0 |
10,103 |
Linux |
|
|
|
3 |
10,802 |
What is on Your Mind? |
|
|
|
13 |
22,644 |
Programming |
|
|
|
2 |
8,261 |
Shell Programming and Scripting |
|
|
|
2 |
3,455 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
4,359 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
3,406 |
UNIX for Beginners Questions & Answers |
|
|
|
0 |
5,199 |
Programming |
|
|
|
2 |
13,490 |
Homework & Coursework Questions |
|
|
|
11 |
15,791 |
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,217 |
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,738 |
HP-UX |
|
|
|
12 |
4,997 |
Shell Programming and Scripting |
|
|
|
0 |
2,909 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
3,104 |
Solaris |
|
|
|
3 |
14,387 |
Programming |
|
|
|
7 |
5,034 |
Shell Programming and Scripting |
|
|
|
2 |
8,943 |
Programming |
|
|
|
4 |
3,243 |
Programming |
|
|
|
5 |
9,841 |
Programming |
|
|
|
3 |
8,068 |
Linux |
|
|
|
1 |
3,433 |
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 |
GLACTIVESHADERPROGRA(3G) OpenGL Manual GLACTIVESHADERPROGRA(3G)
NAME
glActiveShaderProgram - set the active program object for a program pipeline object
C SPECIFICATION
void glActiveShaderProgram(GLuint pipeline, GLuint program);
PARAMETERS
pipeline
Specifies the program pipeline object to set the active program object for.
program
Specifies the program object to set as the active program pipeline object pipeline.
DESCRIPTION
glActiveShaderProgram sets the linked program named by program to be the active program for the program pipeline object pipeline. The
active program in the active program pipeline object is the target of calls to glUniform() when no program has been made current through a
call to glUseProgram().
ERRORS
GL_INVALID_OPERATION is generated if pipeline is not a name previously returned from a call to glGenProgramPipelines() or if such a name
has been deleted by a call to glDeleteProgramPipelines().
GL_INVALID_OPERATION is generated if program refers to a program object that has not been successfully linked.
SEE ALSO
glGenProgramPipelines(), glDeleteProgramPipelines(), glIsProgramPipeline(), glUseProgram(), glUniform()
COPYRIGHT
Copyright (C) 2010 Khronos Group. 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/.
AUTHORS
opengl.org
opengl.org 06/10/2014 GLACTIVESHADERPROGRA(3G)