mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-04 23:56:39 +08:00
23 lines
685 B
Plaintext
23 lines
685 B
Plaintext
|
|
/*
|
||
|
|
* Copyright (C) 2025 Intel Corporation
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include "shared/source/command_container/encode_surface_state.h"
|
||
|
|
#include "shared/source/debug_settings/debug_settings_manager.h"
|
||
|
|
#include "shared/source/gmm_helper/gmm.h"
|
||
|
|
#include "shared/source/gmm_helper/gmm_helper.h"
|
||
|
|
#include "shared/source/gmm_helper/resource_info.h"
|
||
|
|
#include "shared/source/helpers/basic_math.h"
|
||
|
|
#include "shared/source/helpers/surface_format_info.h"
|
||
|
|
#include "shared/source/image/image_surface_state.h"
|
||
|
|
|
||
|
|
namespace NEO {
|
||
|
|
template <typename GfxFamily>
|
||
|
|
bool ImageSurfaceStateHelper<GfxFamily>::imageAsArrayWithArraySizeOf1NotPreferred() {
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
|
||
|
|
} // namespace NEO
|