11-04-2009
We cannot see the source code from here.
10 More Discussions You Might Find Interesting
1. Linux
I'm pretty much new to this Linux stuff, I installed FC4 the other night to try it out.
I'm having a slight problem when launching Quake 3, it's giving me the error GLimp_Init() - could not load OpenGL subsystem
I've updated my video drivers to the latest version and went through fglrxconfig,... (3 Replies)
Discussion started by: Filth Pig
3 Replies
2. UNIX for Advanced & Expert Users
Hi, (HP-UX 11.11)
I need to create a tape image of an igniteUX image created on our igniteUX server.
That is to say. I have a "Online" image of the igniteUX of the targeted system but I now need to copy it to a useable TAPE (igniteUX) image so i can build an other server from it that is not... (3 Replies)
Discussion started by: Andrek
3 Replies
3. AIX
Hi,
I try to install opengl bat it give a error that i need the opengl base level fileset 5.3.0.0
I use AIX 5.3 and my oslevel is now 5300-03.
Where can i find the opengl files i need (5.3.0.0)?
Thanks Peter. (1 Reply)
Discussion started by: xeonbb
1 Replies
4. Ubuntu
Hi,
i am new to opengl, how to work openGL in ubuntu ,,
i am not getting which packages as to be install and how to install those packages.
and how to work with small programs..
Please guide me ,,, it will appriceated ... (7 Replies)
Discussion started by: Ravikishore
7 Replies
5. Ubuntu
Hi Sir,
i am new to openGL, i want to know how to draw cylinder using openGL code in C or C++..
And i have to insert bitmap images on cylinder..
How to do this .. please guide me ...
Thanking You in advance .. (0 Replies)
Discussion started by: Ravikishore
0 Replies
6. Programming
Hi,
please give me, how to code to draw 3D cylinder in openGL, that should be rotated in x-direction.
waiting for your reply .. (2 Replies)
Discussion started by: Ravikishore
2 Replies
7. Programming
Hi,
Any one help me regarding how to install openGL packages to work in linux.
And i installed some of the packages(gl,glu), but i don't know whether they are installed are not .. Which command is should use to check whether openGL is installed are not ..
I am Thankful for any kind of... (3 Replies)
Discussion started by: Ravikishore
3 Replies
8. Shell Programming and Scripting
Hi, I have two sets of image files. Both sets have names A to Z but set 1 ends with .cdt.png and set 2 ends with .matrix.png. I want set 1 to match with set 2 if the names match (i.e. A.cdt.png will match with A.matrix.png) and with the convert image tool (program for images), it will merge the... (6 Replies)
Discussion started by: kylle345
6 Replies
9. Solaris
Hi everybody,
Sorry to bother you one more time, but I have a problem with my Solaris 8 installation.
Actually, Solaris works well, I can start X and access my desktop (CDE), but I'm having troubles using Cadds (a CAO software). Cadds works, but the 3D visualization is very slow compare to... (4 Replies)
Discussion started by: firstpost
4 Replies
10. UNIX Desktop Questions & Answers
i dont know in which forum to ask this question ..... :( . pardon me if it is not this forum
i wanted to know difference between openGL ES and directfb
as far i know directfb is alternative to x11 in linux for embedded devices. something like ...
application
|
... (1 Reply)
Discussion started by: alexzander18
1 Replies
LEARN ABOUT OSX
glshadersource
GLSHADERSOURCE(3G) OpenGL 3.3 GLSHADERSOURCE(3G)
NAME
glShaderSource - Replaces the source code in a shader object
C SPECIFICATION
void glShaderSource(GLuint shader, GLsizei count, const GLchar **string, const GLint *length);
PARAMETERS
shader
Specifies the handle of the shader object whose source code is to be replaced.
count
Specifies the number of elements in the string and length arrays.
string
Specifies an array of pointers to strings containing the source code to be loaded into the shader.
length
Specifies an array of string lengths.
DESCRIPTION
glShaderSource sets the source code in shader to the source code in the array of strings specified by string. Any source code previously
stored in the shader object is completely replaced. The number of strings in the array is specified by count. If length is NULL, each
string is assumed to be null terminated. If length is a value other than NULL, it points to an array containing a string length for each of
the corresponding elements of string. Each element in the length array may contain the length of the corresponding string (the null
character is not counted as part of the string length) or a value less than 0 to indicate that the string is null terminated. The source
code strings are not scanned or parsed at this time; they are simply copied into the specified shader object.
NOTES
OpenGL copies the shader source code strings when glShaderSource is called, so an application may free its copy of the source code strings
immediately after the function returns.
ERRORS
GL_INVALID_VALUE is generated if shader is not a value generated by OpenGL.
GL_INVALID_OPERATION is generated if shader is not a shader object.
GL_INVALID_VALUE is generated if count is less than 0.
ASSOCIATED GETS
glGetShader() with arguments shader and GL_SHADER_SOURCE_LENGTH
glGetShaderSource() with argument shader
glIsShader()
SEE ALSO
glCompileShader(), glCreateShader(), glDeleteShader()
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 GLSHADERSOURCE(3G)