2020-03-06 11:09:57 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2020 Intel Corporation
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
2020-07-31 18:03:32 -07:00
|
|
|
ZE_APIEXPORT ze_result_t ZE_APICALL
|
2020-03-06 11:09:57 +01:00
|
|
|
zeCommandListAppendBarrier_Tracing(ze_command_list_handle_t hCommandList,
|
|
|
|
ze_event_handle_t hSignalEvent,
|
|
|
|
uint32_t numWaitEvents,
|
|
|
|
ze_event_handle_t *phWaitEvents);
|
2020-07-29 02:45:54 -07:00
|
|
|
|
2020-07-31 18:03:32 -07:00
|
|
|
ZE_APIEXPORT ze_result_t ZE_APICALL
|
2020-03-06 11:09:57 +01:00
|
|
|
zeCommandListAppendMemoryRangesBarrier_Tracing(ze_command_list_handle_t hCommandList,
|
|
|
|
uint32_t numRanges,
|
|
|
|
const size_t *pRangeSizes,
|
|
|
|
const void **pRanges,
|
|
|
|
ze_event_handle_t hSignalEvent,
|
|
|
|
uint32_t numWaitEvents,
|
|
|
|
ze_event_handle_t *phWaitEvents);
|
|
|
|
}
|