mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

Related-To: NEO-4447 Change-Id: I6bf3d7edd9d8085c37995b75989b8d412a17bdd9 Signed-off-by: Lukasz Jobczyk <lukasz.jobczyk@intel.com>
17 lines
293 B
C++
17 lines
293 B
C++
/*
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace NEO {
|
|
struct PipelineSelectArgs {
|
|
bool specialPipelineSelectMode = false;
|
|
bool mediaSamplerRequired = false;
|
|
bool is3DPipelineRequired = false;
|
|
};
|
|
} // namespace NEO
|