From: Erik Faye-Lund Date: Tue, 30 Jun 2020 09:09:20 +0000 (+0200) Subject: gallium/docs: fixup formatting of numbered lists X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=686cf8eaada1a6a73a7e9ea6ebde1e573cf91966;p=mesa.git gallium/docs: fixup formatting of numbered lists Fixes: 0caf74bbcdf ("gallium: add PIPE_CAP_FRAMEBUFFER_MSAA_CONSTRAINTS") Fixes: 8632626c81a ("gallium: add pipe_resource::nr_storage_samples, and set it same as nr_samples") Acked-by: Alyssa Rosenzweig Acked-by: Eric Engestrom Part-of: --- diff --git a/src/gallium/docs/source/screen.rst b/src/gallium/docs/source/screen.rst index 25b153265ec..7d32f5a31fe 100644 --- a/src/gallium/docs/source/screen.rst +++ b/src/gallium/docs/source/screen.rst @@ -446,12 +446,14 @@ The integer capabilities: * ``PIPE_CAP_FRAMEBUFFER_MSAA_CONSTRAINTS``: This determines limitations on the number of samples that framebuffer attachments can have. Possible values: - 0: color.nr_samples == zs.nr_samples == color.nr_storage_samples + + 0. color.nr_samples == zs.nr_samples == color.nr_storage_samples (standard MSAA quality) - 1: color.nr_samples >= zs.nr_samples == color.nr_storage_samples + 1. color.nr_samples >= zs.nr_samples == color.nr_storage_samples (enhanced MSAA quality) - 2: color.nr_samples >= zs.nr_samples >= color.nr_storage_samples + 2. color.nr_samples >= zs.nr_samples >= color.nr_storage_samples (full flexibility in tuning MSAA quality and performance) + All color attachments must have the same number of samples and the same number of storage samples. * ``PIPE_CAP_SIGNED_VERTEX_BUFFER_OFFSET``: @@ -936,6 +938,7 @@ If there are not enough slots to store all sample colors, some samples will have an undefined color (called "undefined samples"). The resolve blit behavior is driver-specific, but can be one of these two: + 1. Only defined samples will be averaged. Undefined samples will be ignored. 2. Undefined samples will be approximated by looking at surrounding defined samples (even in different pixels).