2019-09-27 13:28:04 +02:00
|
|
|
/*
|
2020-01-10 11:22:54 +01:00
|
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
2019-09-27 13:28:04 +02:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "igfxfmid.h"
|
|
|
|
|
2019-10-09 17:32:35 +02:00
|
|
|
#include <cstddef>
|
|
|
|
|
2019-09-27 13:28:04 +02:00
|
|
|
namespace NEO {
|
|
|
|
struct HardwareInfo;
|
|
|
|
|
|
|
|
struct SpecialUltHelperGen12lp {
|
2019-10-28 14:12:50 +01:00
|
|
|
static bool shouldCompressionBeEnabledAfterConfigureHardwareCustom(const HardwareInfo &hwInfo);
|
2019-09-27 13:28:04 +02:00
|
|
|
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
|