diff options
author | Marek Olšák <[email protected]> | 2013-03-14 17:18:43 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2013-03-23 13:19:16 +0100 |
commit | 3e10ab6b22341c06a9352b1e029b923f4d8405b9 (patch) | |
tree | ac3dd22bf0f641b69562204066df4c2e211ef8a6 /src/gallium/include | |
parent | 25e3094058977648a6f552d59b728a9ea814b7c2 (diff) |
gallium,st/mesa: don't use blit-based transfers with software rasterizers
The blit-based paths for TexImage, GetTexImage, and ReadPixels aren't very
fast with software rasterizer. Now Gallium drivers have the ability to turn
them off.
Reviewed-by: Brian Paul <[email protected]>
Tested-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/gallium/include')
-rw-r--r-- | src/gallium/include/pipe/p_defines.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/include/pipe/p_defines.h b/src/gallium/include/pipe/p_defines.h index 7f20b992a13..f59e78a1a9e 100644 --- a/src/gallium/include/pipe/p_defines.h +++ b/src/gallium/include/pipe/p_defines.h @@ -499,7 +499,8 @@ enum pipe_cap { PIPE_CAP_CUBE_MAP_ARRAY = 76, PIPE_CAP_TEXTURE_BUFFER_OBJECTS = 77, PIPE_CAP_TEXTURE_BUFFER_OFFSET_ALIGNMENT = 78, - PIPE_CAP_TGSI_TEXCOORD = 79 + PIPE_CAP_TGSI_TEXCOORD = 79, + PIPE_CAP_PREFER_BLIT_BASED_TEXTURE_TRANSFER = 80 }; /** |