diff options
author | Ilia Mirkin <[email protected]> | 2013-10-04 04:32:15 -0400 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2013-10-26 01:36:07 +0200 |
commit | 12d39b4fa8c3265bd95704371467f1c42072dc86 (patch) | |
tree | 9d5a0834c08af10ded204dfb640cd2502005a530 /src/gallium/docs | |
parent | 1090eb57552aed1f4e36ac97b5859ff4b2cc80a5 (diff) |
gallium: add PIPE_CAP_MIXED_FRAMEBUFFER_SIZES
This CAP will determine whether ARB_framebuffer_object can be enabled.
The nv30 driver does not allow mixing swizzled and linear zsbuf/cbuf
textures.
Signed-off-by: Ilia Mirkin <[email protected]>
Signed-off-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/docs')
-rw-r--r-- | src/gallium/docs/source/screen.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/docs/source/screen.rst b/src/gallium/docs/source/screen.rst index d19cd1a7446..a01f5480f52 100644 --- a/src/gallium/docs/source/screen.rst +++ b/src/gallium/docs/source/screen.rst @@ -173,6 +173,9 @@ The integer capabilities: viewport/scissor combination. * ''PIPE_CAP_ENDIANNESS``:: The endianness of the device. Either PIPE_ENDIAN_BIG or PIPE_ENDIAN_LITTLE. +* ``PIPE_CAP_MIXED_FRAMEBUFFER_SIZES``: Whether it is allowed to have + different sizes for fb color/zs attachments. This controls whether + ARB_framebuffer_object is provided. .. _pipe_capf: |