mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 01:04:57 +08:00
Change-Id: Id06ac0741d626cceaafa79f592f3ed9e69136464 Signed-off-by: Dunajski, Bartosz <bartosz.dunajski@intel.com>
16 lines
254 B
C++
16 lines
254 B
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace NEO {
|
|
struct PipelineSelectArgs {
|
|
bool specialPipelineSelectMode = false;
|
|
bool mediaSamplerRequired = false;
|
|
};
|
|
} // namespace NEO
|