mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 18:25:05 +08:00
17 lines
328 B
C
17 lines
328 B
C
|
|
/*
|
||
|
|
* Copyright (C) 2021 Intel Corporation
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
#include "shared/source/command_container/definitions/encode_surface_state_args_base.h"
|
||
|
|
|
||
|
|
namespace NEO {
|
||
|
|
|
||
|
|
struct EncodeSurfaceStateArgs : EncodeSurfaceStateArgsBase {
|
||
|
|
EncodeSurfaceStateArgs() = default;
|
||
|
|
};
|
||
|
|
} // namespace NEO
|