From: Brian Paul Date: Fri, 14 Aug 2009 17:23:18 +0000 (-0600) Subject: Add a FAQ about internal buffer sizes. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a7ca80ff6af8d3b28b981b518ca39baba20a2d89;p=mesa.git Add a FAQ about internal buffer sizes. (cherry picked from master, commit 9a8781bd24730374e14568f67f7db8a9cc444bb4) --- diff --git a/docs/faq.html b/docs/faq.html index 11b5d432558..65e279aac57 100644 --- a/docs/faq.html +++ b/docs/faq.html @@ -316,6 +316,19 @@ Basically, applying a translation of (0.375, 0.375, 0.0) to your coordinates will fix the problem.

+

3.6 How can I change the maximum framebuffer size in Mesa's +swrast backend?

+

+These can be overridden by using the --with-max-width and +--with-max-height options. The two need not be equal. +

+Do note that Mesa uses these values to size some internal buffers, +so increasing these sizes will cause Mesa to require additional +memory. Furthermore, increasing these limits beyond 4096 +may introduce rasterization artifacts; see the leading comments in +src/mesa/swrast/s_tritemp.h. +

+