mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 09:14:47 +08:00
Related-To: NEO-2388 Change-Id: I4da92efe7f875f409cd62519a31ed4509b55bda7 Signed-off-by: Jacek Danecki <jacek.danecki@intel.com>
16 lines
366 B
C++
16 lines
366 B
C++
/*
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include <cstdint>
|
|
|
|
namespace NEO {
|
|
const uint32_t pipelineSelectEnablePipelineSelectMaskBits = 0x3;
|
|
const uint32_t pipelineSelectMediaSamplerDopClockGateMaskBits = 0x10;
|
|
const uint32_t pipelineSelectMediaSamplerPowerClockGateMaskBits = 0x40;
|
|
} // namespace NEO
|