summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorErik Faye-Lund <erik.faye-lund@collabora.com>2023-01-09 07:57:39 +0100
committerMarge Bot <emma+marge@anholt.net>2023-04-26 08:09:37 +0000
commit9b1a99c89eb1257a229161afb683033b7100b0b6 (patch)
treee5a7d9afa97b5e4187462545850c4566128d4a05 /docs
parentdc788aaa6f610d8657ea1512d2594d736eb89b48 (diff)
downloadmesa-9b1a99c89eb1257a229161afb683033b7100b0b6.tar.gz
docs: codepath -> code-path
This is consistent with how we spell this elsewhere in the docs. Reviewed-by: Eric Engestrom <eric@igalia.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22286>
Diffstat (limited to 'docs')
-rw-r--r--docs/gallium/screen.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/gallium/screen.rst b/docs/gallium/screen.rst
index c0a1f04a4dc..c2a2a7b1d5f 100644
--- a/docs/gallium/screen.rst
+++ b/docs/gallium/screen.rst
@@ -625,7 +625,7 @@ The integer capabilities:
* ``PIPE_CAP_NO_CLIP_ON_COPY_TEX``: Driver doesn't want x/y/width/height clipped based on src size when doing a copy texture operation (e.g.: may want out-of-bounds reads that produce 0 instead of leaving the texture content undefined)
* ``PIPE_CAP_MAX_TEXTURE_MB``: Maximum texture size in MB (default is 1024)
* ``PIPE_CAP_DEVICE_PROTECTED_SURFACE``: Whether the device support protected / encrypted content.
-* ``PIPE_CAP_PREFER_REAL_BUFFER_IN_CONSTBUF0``: The state tracker is encouraged to upload constants into a real buffer and bind it into constant buffer 0 instead of binding a user pointer. This may enable a faster codepath in a gallium frontend for drivers that really prefer a real buffer.
+* ``PIPE_CAP_PREFER_REAL_BUFFER_IN_CONSTBUF0``: The state tracker is encouraged to upload constants into a real buffer and bind it into constant buffer 0 instead of binding a user pointer. This may enable a faster code-path in a gallium frontend for drivers that really prefer a real buffer.
* ``PIPE_CAP_GL_CLAMP``: Driver natively supports GL_CLAMP. Required for non-NIR drivers with the GL frontend. NIR drivers with the cap unavailable will have GL_CLAMP lowered to txd/txl with a saturate on the coordinates.
* ``PIPE_CAP_TEXRECT``: Driver supports rectangle textures. Required for OpenGL on ``!prefers_nir`` drivers. If this cap is not present, st/mesa will lower the NIR to use normal 2D texture sampling by using either ``txs`` or ``nir_intrinsic_load_texture_scaling`` to normalize the texture coordinates.
* ``PIPE_CAP_SAMPLER_REDUCTION_MINMAX``: Driver supports EXT min/max sampler reduction.