1 /*
2  * Copyright (C) 2021 Intel Corporation
3  *
4  * SPDX-License-Identifier: MIT
5  *
6  */
7 
8 #pragma once
9 #include "shared/source/command_container/definitions/encode_surface_state_args_base.h"
10 
11 namespace NEO {
12 
13 struct EncodeSurfaceStateArgs : EncodeSurfaceStateArgsBase {
14     EncodeSurfaceStateArgs() = default;
15 };
16 } // namespace NEO
17