b771fd2f22c0af3954ab5314542f56e046dcf6fc
[clinton/guile-figl.git] / upstream-man-pages / man4 / xhtml / glProgramBinary.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "xhtml1-transitional.dtd">
3 <!-- saved from url=(0013)about:internet -->
4 <?xml-stylesheet type="text/xsl" href="mathml.xsl"?><html xmlns="http://www.w3.org/1999/xhtml" xmlns:pref="http://www.w3.org/2002/Math/preference" pref:renderer="mathplayer-dl"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="stylesheet" type="text/css" href="opengl-man.css" /><title>glProgramBinary - OpenGL 4 Reference Pages</title><meta name="generator" content="DocBook XSL Stylesheets V1.69.1" /></head><body><div class="refentry" lang="en" xml:lang="en"><a id="glProgramBinary"></a><div class="titlepage"></div><div class="refnamediv"><h2>Name</h2><p>glProgramBinary — load a program object with a program binary</p></div><div class="refsynopsisdiv"><h2>C Specification</h2><div class="funcsynopsis"><table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0"><tr><td><code class="funcdef">void <b class="fsfunc">glProgramBinary</b>(</code></td><td>GLuint  </td><td><var class="pdparam">program</var>, </td></tr><tr><td> </td><td>GLenum  </td><td><var class="pdparam">binaryFormat</var>, </td></tr><tr><td> </td><td>const void * </td><td><var class="pdparam">binary</var>, </td></tr><tr><td> </td><td>GLsizei  </td><td><var class="pdparam">length</var><code>)</code>;</td></tr></table></div></div><div class="refsect1" lang="en" xml:lang="en"><a id="parameters"></a><h2>Parameters</h2><div class="variablelist"><dl><dt><span class="term"><em class="parameter"><code>program</code></em></span></dt><dd><p>
5 Specifies the name of a program object into which to load a program binary.
6 </p></dd><dt><span class="term"><em class="parameter"><code>binaryFormat</code></em></span></dt><dd><p>
7 Specifies the format of the binary data in binary.
8 </p></dd><dt><span class="term"><em class="parameter"><code>binary</code></em></span></dt><dd><p>
9 Specifies the address an array containing the binary to be loaded into <em class="parameter"><code>program</code></em>.
10 </p></dd><dt><span class="term"><em class="parameter"><code>length</code></em></span></dt><dd><p>
11 Specifies the number of bytes contained in <em class="parameter"><code>binary</code></em>.
12 </p></dd></dl></div></div><div class="refsect1" lang="en" xml:lang="en"><a id="description"></a><h2>Description</h2><p>
13 <code class="function">glProgramBinary</code> loads a program object with a program binary previously
14 returned from <a href="glGetProgramBinary.xml"><span class="citerefentry"><span class="refentrytitle">glGetProgramBinary</span></span></a>.
15 <em class="parameter"><code>binaryFormat</code></em> and <em class="parameter"><code>binary</code></em> must be those returned
16 by a previous call to <a href="glGetProgramBinary.xml"><span class="citerefentry"><span class="refentrytitle">glGetProgramBinary</span></span></a>,
17 and <em class="parameter"><code>length</code></em> must be the length returned by
18 <a href="glGetProgramBinary.xml"><span class="citerefentry"><span class="refentrytitle">glGetProgramBinary</span></span></a>, or by
19 <a href="glGetProgram.xml"><span class="citerefentry"><span class="refentrytitle">glGetProgram</span></span></a> when called with
20 <em class="parameter"><code>pname</code></em> set to <code class="constant">GL_PROGRAM_BINARY_LENGTH</code>.
21 If these conditions are not met, loading the program binary will fail and <em class="parameter"><code>program</code></em>'s
22 <code class="constant">GL_LINK_STATUS</code> will be set to <code class="constant">GL_FALSE</code>.
23 </p><p>
24 A program object's program binary is replaced by calls to
25 <a href="glLinkProgram.xml"><span class="citerefentry"><span class="refentrytitle">glLinkProgram</span></span></a> or
26 <code class="function">glProgramBinary</code>. When linking success or failure is concerned, <code class="function">glProgramBinary</code>
27 can be considered to perform an implicit linking operation.
28 <a href="glLinkProgram.xml"><span class="citerefentry"><span class="refentrytitle">glLinkProgram</span></span></a> and <code class="function">glProgramBinary</code>
29 both set the program object's <code class="constant">GL_LINK_STATUS</code> to <code class="constant">GL_TRUE</code>
30 or <code class="constant">GL_FALSE</code>.
31 </p><p>
32 A successful call to <code class="function">glProgramBinary</code> will reset all uniform variables to their
33 initial values. The initial value is either the value of the variable's initializer as specified in the
34 original shader source, or zero if no initializer was present. Additionally, all vertex shader input
35 and fragment shader output assignments that were in effect when the program was linked before saving are
36 restored with <code class="function">glProgramBinary</code> is called.
37 </p></div><div class="refsect1" lang="en" xml:lang="en"><a id="errors"></a><h2>Errors</h2><p>
38 <code class="constant">GL_INVALID_OPERATION</code> is generated if <em class="parameter"><code>program</code></em> is not the
39 name of an existing program object.
40 </p><p>
41 <code class="constant">GL_INVALID_ENUM</code> is generated if <em class="parameter"><code>binaryFormat</code></em> is not a
42 value recognized by the implementation.
43 </p></div><div class="refsect1" lang="en" xml:lang="en"><a id="notes"></a><h2>Notes</h2><p>
44 A program binary may fail to load if the implementation determines that there has been a
45 change in hardware or software configuration from when the program binary was produced such
46 as having been compiled with an incompatible or outdated version of the compiler.
47 </p></div><div class="refsect1" lang="en" xml:lang="en"><a id="associatedgets"></a><h2>Associated Gets</h2><p>
48 <a href="glGetProgram.xml"><span class="citerefentry"><span class="refentrytitle">glGetProgram</span></span></a> with argument <code class="constant">GL_PROGRAM_BINARY_LENGTH</code>
49 </p><p>
50 <a href="glGet.xml"><span class="citerefentry"><span class="refentrytitle">glGet</span></span></a> with argument <code class="constant">GL_NUM_PROGRAM_BINARY_FORMATS</code>
51 </p><p>
52 <a href="glGet.xml"><span class="citerefentry"><span class="refentrytitle">glGet</span></span></a> with argument <code class="constant">GL_PROGRAM_BINARY_FORMATS</code>
53 </p></div><div class="refsect1" lang="en" xml:lang="en"><a id="seealso"></a><h2>See Also</h2><p>
54 <a href="glGetProgram.xml"><span class="citerefentry"><span class="refentrytitle">glGetProgram</span></span></a>,
55 <a href="glGetProgramBinary.xml"><span class="citerefentry"><span class="refentrytitle">glGetProgramBinary</span></span></a>
56 </p></div><div class="refsect1" lang="en" xml:lang="en"><a id="Copyright"></a><h2>Copyright</h2><p>
57 Copyright <span class="trademark"></span>© 2010 Khronos Group.
58 This material may be distributed subject to the terms and conditions set forth in
59 the Open Publication License, v 1.0, 8 June 1999.
60 <a href="http://opencontent.org/openpub/" target="_top">http://opencontent.org/openpub/</a>.
61 </p></div></div></body></html>