GLAPI/glGetFragDataIndex: Difference between revisions

From OpenGL Wiki
Jump to navigation Jump to search
m Renaming category: 'API Reference 4' to 'Core API Reference'.
m Bot: Adding better formatting.
 
(5 intermediate revisions by 2 users not shown)
Line 9: Line 9:
== Function Definition ==
== Function Definition ==


   GLint '''glGetFragDataIndex'''(GLuint ''program'', const char * ''name'');
   GLint '''glGetFragDataIndex'''(GLuint {{param|program}}, const char * {{param|name}});


; program
; program
Line 18: Line 18:
== Description ==
== Description ==


'''glGetFragDataIndex''' returns the index of the fragment color to which the variable ''name'' was bound when the program object ''program'' was last linked. If ''name'' is not a varying out variable of ''program'', or if an error occurs, -1 will be returned.
'''glGetFragDataIndex''' returns the index of the fragment color to which the variable {{param|name}} was bound when the program object {{param|program}} was last linked. If {{param|name}} is not a varying out variable of {{param|program}}, or if an error occurs, -1 will be returned.


== Notes ==
== Notes ==
Line 26: Line 26:
== Errors ==
== Errors ==


{{code|GL_INVALID_OPERATION}} is generated if ''program'' is not the name of a program object.
{{enum|GL_INVALID_OPERATION}} is generated if {{param|program}} is not the name of a program object.


== See Also ==
== See Also ==


[[GLAPI/glCreateProgram|glCreateProgram]], [[GLAPI/glBindFragDataLocation|glBindFragDataLocation]], [[GLAPI/glBindFragDataLocationIndexed|glBindFragDataLocationIndexed]], [[GLAPI/glGetFragDataLocation|glGetFragDataLocation]]
{{apifunc|glLinkProgram}}, {{apifunc|glBindFragDataLocation}}, {{apifunc|glBindFragDataLocationIndexed}}, {{apifunc|glGetFragDataLocation}}, {{apifunc|glGetProgramResource}}, {{apifunc|glGetProgramResourceLocationIndex}}


== Copyright ==
== Copyright ==
Line 36: Line 36:
Copyright © 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/ http://opencontent.org/openpub/].
Copyright © 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/ http://opencontent.org/openpub/].


[[Category:GL 4 API Shader Program Creation|GetFragDataIndex]]
[[Category:Core API Reference|GetFragDataIndex]]
[[Category:Core API Reference|GetFragDataIndex]]
[[Category:Core API Ref Shader Program Query|GetFragDataIndex]]
[[Category:Program Object API State Functions|GetFragDataIndex]]

Latest revision as of 09:59, 15 August 2013

glGetFragDataIndex
Core in version 4.6
Core since version 3.3
Core ARB extension ARB_blend_func_extended

glGetFragDataIndex: query the bindings of color indices to user-defined varying out variables

Function Definition

 GLint glGetFragDataIndex(GLuint program​, const char * name​);
program
The name of the program containing varying out variable whose binding to query
name
The name of the user-defined varying out variable whose index to query

Description

glGetFragDataIndex returns the index of the fragment color to which the variable name​ was bound when the program object program​ was last linked. If name​ is not a varying out variable of program​, or if an error occurs, -1 will be returned.

Notes

glGetFragDataIndex is available only if the GL version is 3.3 or greater.

Errors

GL_INVALID_OPERATION is generated if program​ is not the name of a program object.

See Also

glLinkProgram, glBindFragDataLocation, glBindFragDataLocationIndexed, glGetFragDataLocation, glGetProgramResource, glGetProgramResourceLocationIndex

Copyright

Copyright © 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/.