diff options
author | Ilia Mirkin <[email protected]> | 2017-01-01 23:42:17 -0500 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2017-01-16 21:13:09 -0500 |
commit | a1c84842710268793c4a8de3cad8db95b6f37a82 (patch) | |
tree | 356fd20d7a55c09e28293d53d88adf3b3a54a7b5 /src/gallium/docs | |
parent | ee3ebe68f949f1e365029db217808303692863a2 (diff) |
gallium: add flags parameter to texture barrier
This is so that we can differentiate between flushing any framebuffer
reading caches from regular sampler caches.
Signed-off-by: Ilia Mirkin <[email protected]>
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/gallium/docs')
-rw-r--r-- | src/gallium/docs/source/context.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/docs/source/context.rst b/src/gallium/docs/source/context.rst index 35f51a09410..d8b25601a62 100644 --- a/src/gallium/docs/source/context.rst +++ b/src/gallium/docs/source/context.rst @@ -578,7 +578,8 @@ texture_barrier %%%%%%%%%%%%%%% This function flushes all pending writes to the currently-set surfaces and -invalidates all read caches of the currently-set samplers. +invalidates all read caches of the currently-set samplers. This can be used +for both regular textures as well as for framebuffers read via FBFETCH. |