diff options
author | Marek Olšák <[email protected]> | 2012-10-28 17:52:48 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-10-31 01:53:50 +0100 |
commit | c9f2af3df719c5ed608ef72b09f6907e1015079c (patch) | |
tree | 490b09022a3bd5995921b85e7bc0c57ddd2411ba /src/gallium/docs/source/screen.rst | |
parent | f2f782d50fa9ba3e2352a404f812a51451b20ae5 (diff) |
gallium: expose ARB_map_buffer_alignment on Radeon
Reviewed-by: Brian Paul <[email protected]>
v2: update relnotes-9.1
v3: use align_malloc and align_free for malloced buffers in r300g
v4: document the new CAP in the docs
Diffstat (limited to 'src/gallium/docs/source/screen.rst')
-rw-r--r-- | src/gallium/docs/source/screen.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gallium/docs/source/screen.rst b/src/gallium/docs/source/screen.rst index 7a5568477f0..6c89171cd73 100644 --- a/src/gallium/docs/source/screen.rst +++ b/src/gallium/docs/source/screen.rst @@ -130,6 +130,12 @@ The integer capabilities: pipe_draw_info::start_instance. * ``PIPE_CAP_QUERY_TIMESTAMP``: Whether PIPE_QUERY_TIMESTAMP and the pipe_screen::get_timestamp hook are implemented. +* ``PIPE_CAP_TEXTURE_MULTISAMPLE``: Whether all MSAA resources supported + for rendering are also supported for texturing. +* ``PIPE_CAP_MIN_MAP_BUFFER_ALIGNMENT``: The minimum alignment that should be + expected for a pointer returned by transfer_map if the resource is + PIPE_BUFFER. In other words, the pointer returned by transfer_map is + always aligned to this value. .. _pipe_capf: |