gallium-docs: Fix missing PIPE_CAPs.
authorCorbin Simpson <MostAwesomeDude@gmail.com>
Sat, 30 Jan 2010 20:11:28 +0000 (12:11 -0800)
committerCorbin Simpson <MostAwesomeDude@gmail.com>
Sat, 30 Jan 2010 20:16:10 +0000 (12:16 -0800)
Hmm, need to cross-ref those TGSI things. My work is never done... :3

src/gallium/docs/source/glossary.rst
src/gallium/docs/source/screen.rst

index e49141b5e25670260fb81ae12e9face38f3fc055..0696cb5d27787b539e862cb8bfd3675943438380 100644 (file)
@@ -17,3 +17,7 @@ Glossary
    NPOT
       Non-power-of-two. Usually applied to textures which have at least one
       dimension which is not a power of two.
+
+   LOD
+      Level of Detail. Also spelled "LoD." The value that determines when the
+      switches between mipmaps occur during texture sampling.
index 0507b81627b07bb1a9c5a114f3adc396f3d159d4..3e57a282fd4a9df056dec2b410f18a8f68c6df10 100644 (file)
@@ -57,14 +57,20 @@ The integer capabilities:
   only permit binding one constant buffer per shader, and the shaders will
   not permit two-dimensional access to constants.
 * ``MAX_CONST_BUFFER_SIZE``: Maximum byte size of a single constant buffer.
+* ``INDEP_BLEND_ENABLE``: Whether per-rendertarget blend enabling and channel
+  masks are supported. If 0, then the first rendertarget's blend mask is
+  replicated across all MRTs.
+* ``INDEP_BLEND_FUNC``: Whether per-rendertarget blend functions are
+  available. If 0, then the first rendertarget's blend functions affect all
+  MRTs.
 * ``PIPE_CAP_TGSI_FS_COORD_ORIGIN_UPPER_LEFT``: Whether the TGSI property
-  FS_COORD_ORIGIN with value UPPER_LEFT is supported
+  FS_COORD_ORIGIN with value UPPER_LEFT is supported.
 * ``PIPE_CAP_TGSI_FS_COORD_ORIGIN_LOWER_LEFT``: Whether the TGSI property
-  FS_COORD_ORIGIN with value LOWER_LEFT is supported
+  FS_COORD_ORIGIN with value LOWER_LEFT is supported.
 * ``PIPE_CAP_TGSI_FS_COORD_PIXEL_CENTER_HALF_INTEGER``: Whether the TGSI
-  property FS_COORD_PIXEL_CENTER with value HALF_INTEGER is supported
+  property FS_COORD_PIXEL_CENTER with value HALF_INTEGER is supported.
 * ``PIPE_CAP_TGSI_FS_COORD_PIXEL_CENTER_INTEGER``: Whether the TGSI
-  property FS_COORD_PIXEL_CENTER with value INTEGER is supported
+  property FS_COORD_PIXEL_CENTER with value INTEGER is supported.
 
 The floating-point capabilities:
 
@@ -72,6 +78,10 @@ The floating-point capabilities:
 * ``MAX_LINE_WIDTH_AA``: The maximum width of a smoothed line.
 * ``MAX_POINT_WIDTH``: The maximum width and height of a point.
 * ``MAX_POINT_WIDTH_AA``: The maximum width and height of a smoothed point.
+* ``MAX_TEXTURE_ANISOTROPY``: The maximum level of anisotropy that can be
+  applied to anisotropically filtered textures.
+* ``MAX_TEXTURE_LOD_BIAS``: The maximum :term:`LOD` bias that may be applied
+  to filtered textures.
 * ``GUARD_BAND_LEFT``, ``GUARD_BAND_TOP``, ``GUARD_BAND_RIGHT``,
   ``GUARD_BAND_BOTTOM``: XXX