Files
UnrealEngine/Engine/Source/ThirdParty/Intel/ISPC/ispc-1.24.0/ispcrt/detail/Kernel.h
2025-05-18 13:04:45 +08:00

18 lines
293 B
C++

// Copyright 2020 Intel Corporation
// SPDX-License-Identifier: BSD-3-Clause
#pragma once
#include "MemoryView.h"
namespace ispcrt {
namespace base {
struct Kernel : public RefCounted {
Kernel() = default;
virtual ~Kernel() = default;
};
} // namespace base
} // namespace ispcrt