diff options
author | Chad Versace <chad.versace@linux.intel.com> | 2012-11-12 21:07:31 -0800 |
---|---|---|
committer | Chad Versace <chad.versace@linux.intel.com> | 2012-11-12 21:07:31 -0800 |
commit | c47d3145c92f95e78f2210c480fa1be150048386 (patch) | |
tree | 5274a95725dbfedad0ee4c811ac8e488badcd251 /man | |
parent | 3be20cee03411e242b22ac25a14360b05c9bf180 (diff) |
man: Document OpenGL ES3 support
Update the manpages for waffle_config, waffle_context, and waffle_dl.
Signed-off-by: Chad Versace <chad.versace@linux.intel.com>
Diffstat (limited to 'man')
-rw-r--r-- | man/waffle_config.3.xml | 9 | ||||
-rw-r--r-- | man/waffle_context.3.xml | 5 | ||||
-rw-r--r-- | man/waffle_dl.3.xml | 8 |
3 files changed, 18 insertions, 4 deletions
diff --git a/man/waffle_config.3.xml b/man/waffle_config.3.xml index b106812..60c9142 100644 --- a/man/waffle_config.3.xml +++ b/man/waffle_config.3.xml @@ -194,6 +194,7 @@ struct waffle_config; <member><constant>WAFFLE_CONTEXT_OPENGL</constant></member> <member><constant>WAFFLE_CONTEXT_OPENGL_ES1</constant></member> <member><constant>WAFFLE_CONTEXT_OPENGL_ES2</constant></member> + <member><constant>WAFFLE_CONTEXT_OPENGL_ES3</constant></member> </simplelist> </para> <para> @@ -266,6 +267,13 @@ struct waffle_config; </para> <para> + If the requested API is <constant>WAFFLE_CONTEXT_OPENGL_ES3</constant>, + then the default value is 3.0. + + Waffle accepts any value that is at least 3.0 and strictly less than 4.0. + </para> + + <para> If the requested API is <constant>WAFFLE_CONTEXT_OPENGL</constant>, then the default and minimum accepted value is 1.0. </para> @@ -305,6 +313,7 @@ struct waffle_config; If the requested API is <constant>WAFFLE_CONTEXT_OPENGL_ES1</constant> or <constant>WAFFLE_CONTEXT_OPENGL_ES2</constant>, + <constant>WAFFLE_CONTEXT_OPENGL_ES3</constant>, then the default and only accepted value is <constant>WAFFLE_NONE</constant>. </para> diff --git a/man/waffle_context.3.xml b/man/waffle_context.3.xml index 7a5d26c..ea64fed 100644 --- a/man/waffle_context.3.xml +++ b/man/waffle_context.3.xml @@ -153,8 +153,9 @@ struct waffle_context; <listitem> <para> If the chosen API is - <constant>WAFFLE_OPENGL_ES1</constant> or - <constant>WAFFLE_OPENGL_ES2</constant>, + <constant>WAFFLE_OPENGL_ES1</constant>, + <constant>WAFFLE_OPENGL_ES2</constant>, or + <constant>WAFFLE_OPENGL_ES3</constant>, then the returned context may implement any of: diff --git a/man/waffle_dl.3.xml b/man/waffle_dl.3.xml index 43bcaaf..1d088aa 100644 --- a/man/waffle_dl.3.xml +++ b/man/waffle_dl.3.xml @@ -65,12 +65,16 @@ <member><constant>WAFFLE_DL_OPENGL</constant></member> <member><constant>WAFFLE_DL_OPENGL_ES1</constant></member> <member><constant>WAFFLE_DL_OPENGL_ES2</constant></member> + <member><constant>WAFFLE_DL_OPENGL_ES3</constant></member> </simplelist> </para> <para> - For example, on Linux, the <constant>WAFFLE_DL_*</constant> enums map to <filename>libGL.so.1</filename>, - <filename>libGLESv1_CM.so</filename>, and <filename>libGLESv2.so</filename>. + For example, on Linux, the <constant>WAFFLE_DL_*</constant> enums map to + <filename>libGL.so.1</filename>, + <filename>libGLESv1_CM.so</filename>, + <filename>libGLESv2.so</filename>, and + <filename>libGLESv2.so</filename>, repectively. </para> <variablelist> |