diff options
author | Chia-I Wu <[email protected]> | 2014-08-26 13:41:11 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2014-08-26 14:10:50 +0800 |
commit | 6c73478223a0ed76e54f14c46831974c3efaacdf (patch) | |
tree | fc9071149c222ac5679c2fb73dae11507698d284 /src/gallium/drivers/ilo/ilo_transfer.h | |
parent | 354d84b6297fe2937e9684175ea9d3b650b75417 (diff) |
ilo: rename intel_bo_map_unsynchronized()
Rename it to intel_bo_map_gtt_async().
Diffstat (limited to 'src/gallium/drivers/ilo/ilo_transfer.h')
-rw-r--r-- | src/gallium/drivers/ilo/ilo_transfer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/ilo/ilo_transfer.h b/src/gallium/drivers/ilo/ilo_transfer.h index d7f4838d384..e41edc1aa53 100644 --- a/src/gallium/drivers/ilo/ilo_transfer.h +++ b/src/gallium/drivers/ilo/ilo_transfer.h @@ -39,10 +39,10 @@ #define ILO_TRANSFER_MAP_BUFFER_ALIGNMENT 64 enum ilo_transfer_map_method { - /* map() / map_gtt() / map_unsynchronized() */ + /* map() / map_gtt() / map_gtt_async() */ ILO_TRANSFER_MAP_CPU, ILO_TRANSFER_MAP_GTT, - ILO_TRANSFER_MAP_GTT_UNSYNC, + ILO_TRANSFER_MAP_GTT_ASYNC, /* use staging resource */ ILO_TRANSFER_MAP_STAGING, |