blob: 3d7932c709193da5c5ca2c25d8afa6232b8a906a [file]
//
// 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.
//
// CLMemory.h: Defines the cl::Memory class, which is a memory object and represents OpenCL objects
// such as buffers, images and pipes.
#ifndef LIBANGLE_CLMEMORY_H_
#define LIBANGLE_CLMEMORY_H_
#include "libANGLE/CLtypes.h"
namespace cl
{
class Memory final
{
public:
using IsCLObjectType = std::true_type;
};
} // namespace cl
#endif // LIBANGLE_CLMEMORY_H_