mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-10 12:53:42 +08:00

Change-Id: I383d685481ec4ca69f59c23104730084b4448b17 Signed-off-by: Maciej Dziuban <maciej.dziuban@intel.com>
25 lines
686 B
C++
25 lines
686 B
C++
/*
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "igfxfmid.h"
|
|
|
|
#include <cstddef>
|
|
|
|
namespace NEO {
|
|
struct HardwareInfo;
|
|
|
|
struct SpecialUltHelperGen12lp {
|
|
static bool shouldCompressionBeEnabledAfterConfigureHardwareCustom(const HardwareInfo &hwInfo);
|
|
static bool additionalCoherencyCheck(PRODUCT_FAMILY productFamily, bool coherency);
|
|
static bool shouldPerformimagePitchAlignment(PRODUCT_FAMILY productFamily);
|
|
static bool shouldTestDefaultImplementationOfSetupHardwareCapabilities(PRODUCT_FAMILY productFamily);
|
|
static bool isPipeControlWArequired(PRODUCT_FAMILY productFamily);
|
|
};
|
|
} // namespace NEO
|