mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-25 05:52:43 +08:00
18 lines
366 B
C
18 lines
366 B
C
|
|
/*
|
||
|
|
* Copyright (C) 2024 Intel Corporation
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "shared/source/program/sync_buffer_handler.h"
|
||
|
|
|
||
|
|
class MockSyncBufferHandler : public NEO::SyncBufferHandler {
|
||
|
|
public:
|
||
|
|
using SyncBufferHandler::bufferSize;
|
||
|
|
using SyncBufferHandler::graphicsAllocation;
|
||
|
|
using SyncBufferHandler::usedBufferSize;
|
||
|
|
};
|