]> gitweb.factorcode.org Git - factor.git/blob - basis/opengl/shaders/shaders-docs.factor
Merge branch 'master' of git://factorcode.org/git/factor
[factor.git] / basis / opengl / shaders / shaders-docs.factor
1 USING: help.markup help.syntax io kernel math quotations
2 opengl.gl multiline assocs strings ;
3 IN: opengl.shaders
4
5 HELP: gl-shader
6 { $class-description { $snippet "gl-shader" } " is a predicate class comprising values returned by OpenGL to represent shader objects. The following words are provided for creating and manipulating these objects:"
7     { $list
8         { { $link <gl-shader> } " - Compile GLSL code into a shader object" }
9         { { $link gl-shader-ok? } " - Check whether a shader object compiled successfully" }
10         { { $link check-gl-shader } " - Throw an error unless a shader object compiled successfully" }
11         { { $link gl-shader-info-log } " - Retrieve the info log of messages generated by the GLSL compiler" }
12         { { $link delete-gl-shader } " - Invalidate a shader object" }
13     }
14   "The derived predicate classes " { $link vertex-shader } " and " { $link fragment-shader } " are also defined for the two standard kinds of shader defined by the OpenGL specification." } ;
15
16 HELP: vertex-shader
17 { $class-description { $snippet "vertex-shader" } " is the predicate class of " { $link gl-shader } " objects that refer to shaders of type " { $snippet "GL_VERTEX_SHADER" } ". In addition to the " { $snippet "gl-shader" } " words, the following vertex shader-specific functions are defined:"
18     { $list
19         { { $link <vertex-shader> } " - Compile GLSL code into a vertex shader object "}
20     }
21 } ;
22
23 HELP: fragment-shader
24 { $class-description { $snippet "fragment-shader" } " is the predicate class of " { $link gl-shader } " objects that refer to shaders of type " { $snippet "GL_FRAGMENT_SHADER" } ". In addition to the " { $snippet "gl-shader" } " words, the following fragment shader-specific functions are defined:"
25     { $list
26         { { $link <fragment-shader> } " - Compile GLSL code into a fragment shader object "}
27     }
28 } ;
29
30 HELP: <gl-shader>
31 { $values { "source" "The GLSL source code to compile" } { "kind" "The kind of shader to compile, such as " { $snippet "GL_VERTEX_SHADER" } " or " { $snippet "GL_FRAGMENT_SHADER" } } { "shader" "a new " { $link gl-shader } } }
32 { $description "Tries to compile the given GLSL source into a shader object. The returned object can be checked for validity by " { $link check-gl-shader } " or " { $link gl-shader-ok? } ". Errors and warnings generated by the GLSL compiler will be collected in the info log, available from " { $link gl-shader-info-log } ".\n\nWhen the shader object is no longer needed, it should be deleted using " { $link delete-gl-shader } " or else be attached to a " { $link gl-program } " object deleted using " { $link delete-gl-program } "." } ;
33
34 HELP: <vertex-shader>
35 { $values { "source" "The GLSL source code to compile" } { "vertex-shader" "a new " { $link vertex-shader } } }
36 { $description "Tries to compile the given GLSL source into a vertex shader object. Equivalent to " { $snippet "GL_VERTEX_SHADER <gl-shader>" } "." } ;
37
38 HELP: <fragment-shader>
39 { $values { "source" "The GLSL source code to compile" } { "fragment-shader" "a new " { $link fragment-shader } } }
40 { $description "Tries to compile the given GLSL source into a fragment shader object. Equivalent to " { $snippet "GL_FRAGMENT_SHADER <gl-shader>" } "." } ;
41
42 HELP: gl-shader-ok?
43 { $values { "shader" "A " { $link gl-shader } " object" } { "?" "a boolean" } }
44 { $description "Returns a boolean value indicating whether the given shader object compiled successfully. Compilation errors and warnings are available in the shader's info log, which can be gotten using " { $link gl-shader-info-log } "." } ;
45
46 HELP: check-gl-shader
47 { $values { "shader" "A " { $link gl-shader } " object" } }
48 { $description "Throws an error containing the " { $link gl-shader-info-log } " for the shader object if it failed to compile. Otherwise, the shader object is left on the stack." } ;
49
50 HELP: delete-gl-shader
51 { $values { "shader" "A " { $link gl-shader } " object" } }
52 { $description "Deletes the shader object, invalidating it and releasing any resources allocated for it by the OpenGL implementation." } ;
53
54 HELP: gl-shader-info-log
55 { $values { "shader" "A " { $link gl-shader } " object" } { "shader" "a new " { $link gl-shader } } { "log" string } }
56 { $description "Retrieves the info log for " { $snippet "shader" } ", including any errors or warnings generated in compiling the shader object." } ;
57
58 HELP: gl-program
59 { $class-description { $snippet "gl-program" } " is a predicate class comprising values returned by OpenGL to represent proram objects. The following words are provided for creating and manipulating these objects:"
60     { $list
61         { { $link <gl-program> } ", " { $link <simple-gl-program> } " - Link a set of shaders into a GLSL program" }
62         { { $link gl-program-ok? } " - Check whether a program object linked successfully" }
63         { { $link check-gl-program } " - Throw an error unless a program object linked successfully" }
64         { { $link gl-program-info-log } " - Retrieve the info log of messages generated by the GLSL linker" }
65         { { $link gl-program-shaders } " - Retrieve the set of shader objects composing the GLSL program" }
66         { { $link delete-gl-program } " - Invalidate a program object and all its attached shaders" }
67         { { $link with-gl-program } " - Use a program object" }
68     }
69 } ;
70
71 HELP: <gl-program>
72 { $values { "shaders" "A sequence of " { $link gl-shader } " objects." } { "program" "a new " { $link gl-program } } } 
73 { $description "Creates a new GLSL program object, attaches all the shader objects in the " { $snippet "shaders" } " sequence, and attempts to link them. The returned object can be checked for validity by " { $link check-gl-program } " or " { $link gl-program-ok? } ". Errors and warnings generated by the GLSL linker will be collected in the info log, available from " { $link gl-program-info-log } ".\n\nWhen the program object and its attached shaders are no longer needed, it should be deleted using " { $link delete-gl-program } "." } ;
74
75 HELP: <simple-gl-program>
76 { $values { "vertex-shader-source" "A string containing GLSL vertex shader source" } { "fragment-shader-source" "A string containing GLSL fragment shader source" } { "program" "a new " { $link gl-program } } }
77 { $description "Wrapper for " { $link <gl-program> } " for the simple case of compiling a single vertex shader and fragment shader and linking them into a GLSL program. Throws an exception if compiling or linking fails." } ;
78
79 { <gl-program> <simple-gl-program> } related-words
80
81 HELP: gl-program-ok?
82 { $values { "program" "A " { $link gl-program } " object" } { "?" "a boolean" } }
83 { $description "Returns a boolean value indicating whether the given program object linked successfully. Link errors and warnings are available in the program's info log, which can be gotten using " { $link gl-program-info-log } "." } ;
84
85 HELP: check-gl-program
86 { $values { "program" "A " { $link gl-program } " object" } }
87 { $description "Throws an error containing the " { $link gl-program-info-log } " for the program object if it failed to link. Otherwise, the program object is left on the stack." } ;
88
89 HELP: gl-program-info-log
90 { $values { "program" "A " { $link gl-program } " object" } { "log" string } }
91 { $description "Retrieves the info log for " { $snippet "program" } ", including any errors or warnings generated in linking the program object." } ;
92
93 HELP: delete-gl-program
94 { $values { "program" "A " { $link gl-program } " object" } }
95 { $description "Deletes the program object, invalidating it and releasing any resources allocated for it by the OpenGL implementation. Any attached " { $link gl-shader } "s are also deleted.\n\nIf the shader objects should be preserved, they should each be detached using " { $link detach-gl-program-shader } ". The program object can then be destroyed alone using " { $link delete-gl-program-only } "." } ;
96
97 HELP: with-gl-program
98 { $values { "program" "A " { $link gl-program } " object" } { "quot" "A quotation with stack effect " { $snippet "( program -- )" } } }
99 { $description "Enables " { $snippet "program" } " for all OpenGL calls made in the dynamic extent of " { $snippet "quot" } ". " { $snippet "program" } " is left on the top of the stack when " { $snippet "quot" } " is called. The fixed-function pipeline is restored at the end of " { $snippet "quot" } "." } ;
100
101 ABOUT: "gl-utilities"