Hash :
82ba79ff
Author :
Date :
2024-01-08T15:22:59
OpenCL: Update CLtypes.h to cl_types.h This change/enhancement is to keep codebase more consistent since vulkan backend versions of this header use lowercase-snake_case for file name. Bug: angleproject:8501 Change-Id: I223712c72db06425d192ddfe7300e5475c341e38 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/5233364 Reviewed-by: Shahbaz Youssefi <syoussefi@chromium.org> Commit-Queue: Shahbaz Youssefi <syoussefi@chromium.org>
//
// Copyright 2021 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// CLSamplerImpl.h: Defines the abstract rx::CLSamplerImpl class.
#ifndef LIBANGLE_RENDERER_CLSAMPLERIMPL_H_
#define LIBANGLE_RENDERER_CLSAMPLERIMPL_H_
#include "libANGLE/renderer/cl_types.h"
namespace rx
{
class CLSamplerImpl : angle::NonCopyable
{
public:
using Ptr = std::unique_ptr<CLSamplerImpl>;
CLSamplerImpl(const cl::Sampler &sampler);
virtual ~CLSamplerImpl();
protected:
const cl::Sampler &mSampler;
};
} // namespace rx
#endif // LIBANGLE_RENDERER_CLSAMPLERIMPL_H_