Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 31 additions & 21 deletions docs/xml/Javax.Microedition.Khronos.Opengles/IGL10.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,12 @@
<Parameter Name="texture" Type="System.Int32" />
</Parameters>
<Docs>
<param name="texture">To be added.</param>
<summary>
</summary>
<param name="texture">The texture unit to make active. Specify <c>GL_TEXTURE0 + i</c>, where <c>i</c> is greater than or equal to zero and less than <c>GL_MAX_TEXTURE_UNITS</c>.</param>
<summary>Selects the texture unit affected by subsequent texture state calls.</summary>
<remarks>
<para>
See <format type="text/html"><a href="https://registry.khronos.org/OpenGL-Refpages/es1.1/xhtml/glActiveTexture.xml" title="Khronos OpenGL ES 1.1 reference">the Khronos OpenGL ES reference for glActiveTexture</a></format>.
</para>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 1" />
Expand Down Expand Up @@ -488,11 +490,13 @@
<Parameter Name="texture" Type="System.Int32" />
</Parameters>
<Docs>
<param name="target">To be added.</param>
<param name="texture">To be added.</param>
<summary>
</summary>
<param name="target">The texture target to bind. In OpenGL ES 1.0, this must be <c>GL_TEXTURE_2D</c>.</param>
<param name="texture">The name of the texture to bind. Specify zero to select the target's default texture.</param>
<summary>Binds a named texture to a texture target.</summary>
<remarks>
<para>
See <format type="text/html"><a href="https://registry.khronos.org/OpenGL-Refpages/es1.1/xhtml/glBindTexture.xml" title="Khronos OpenGL ES 1.1 reference">the Khronos OpenGL ES reference for glBindTexture</a></format>.
</para>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 1" />
Expand Down Expand Up @@ -680,10 +684,12 @@
<Parameter Name="mask" Type="System.Int32" />
</Parameters>
<Docs>
<param name="mask">To be added.</param>
<summary>
</summary>
<param name="mask">A bitwise OR of <c>GL_COLOR_BUFFER_BIT</c>, <c>GL_DEPTH_BUFFER_BIT</c>, and <c>GL_STENCIL_BUFFER_BIT</c> that identifies the buffers to clear.</param>
<summary>Clears buffers to their previously configured clear values.</summary>
<remarks>
<para>
See <format type="text/html"><a href="https://registry.khronos.org/OpenGL-Refpages/es1.1/xhtml/glClear.xml" title="Khronos OpenGL ES 1.1 reference">the Khronos OpenGL ES reference for glClear</a></format>.
</para>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 1" />
Expand Down Expand Up @@ -2004,12 +2010,14 @@
<Parameter Name="count" Type="System.Int32" />
</Parameters>
<Docs>
<param name="mode">To be added.</param>
<param name="first">To be added.</param>
<param name="count">To be added.</param>
<summary>
</summary>
<param name="mode">The primitive type to render, such as <c>GL_TRIANGLES</c> or <c>GL_LINE_STRIP</c>.</param>
<param name="first">The index of the first element in each enabled array to use.</param>
<param name="count">The number of sequential elements from each enabled array to use.</param>
<summary>Renders primitives using sequential elements from enabled client arrays.</summary>
<remarks>
<para>
See <format type="text/html"><a href="https://registry.khronos.org/OpenGL-Refpages/es1.1/xhtml/glDrawArrays.xml" title="Khronos OpenGL ES 1.1 reference">the Khronos OpenGL ES reference for glDrawArrays</a></format>.
</para>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 1" />
Expand Down Expand Up @@ -10197,13 +10205,15 @@
<Parameter Name="height" Type="System.Int32" />
</Parameters>
<Docs>
<param name="x">To be added.</param>
<param name="y">To be added.</param>
<param name="width">To be added.</param>
<param name="height">To be added.</param>
<summary>
</summary>
<param name="x">The x-coordinate, in pixels, of the viewport's lower-left corner.</param>
<param name="y">The y-coordinate, in pixels, of the viewport's lower-left corner.</param>
<param name="width">The width of the viewport, in pixels.</param>
<param name="height">The height of the viewport, in pixels.</param>
<summary>Sets the viewport transform from normalized device coordinates to window coordinates.</summary>
<remarks>
<para>
See <format type="text/html"><a href="https://registry.khronos.org/OpenGL-Refpages/es1.1/xhtml/glViewport.xml" title="Khronos OpenGL ES 1.1 reference">the Khronos OpenGL ES reference for glViewport</a></format>.
</para>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 1" />
Expand Down