Hash :
d4083c79
Author :
Date :
2025-01-31T15:06:36
Metal: Make ObjCPtr available to all modules Move ObjCPtr implementation to src/common/ObjCPtr.h, angle::ObjCPtr so that it's available also outside libANGLE. Bug: angleproject:393263506 Change-Id: I8ecd5632c7ae33ef4b409fc820fad229e91bc0ab Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/6219318 Auto-Submit: Kimmo Kinnunen <kkinnunen@apple.com> Reviewed-by: Geoff Lang <geofflang@chromium.org> Commit-Queue: Kimmo Kinnunen <kkinnunen@apple.com>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
//
// Copyright 2020 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.
//
// SamplerMtl.h:
// Defines the class interface for SamplerMtl, implementing SamplerImpl.
//
#ifndef LIBANGLE_RENDERER_METAL_SAMPLERMTL_H_
#define LIBANGLE_RENDERER_METAL_SAMPLERMTL_H_
#include "libANGLE/renderer/SamplerImpl.h"
#include "libANGLE/renderer/metal/mtl_common.h"
namespace rx
{
class ContextMtl;
class SamplerMtl : public SamplerImpl
{
public:
SamplerMtl(const gl::SamplerState &state);
~SamplerMtl() override;
void onDestroy(const gl::Context *context) override;
angle::Result syncState(const gl::Context *context, const bool dirty) override;
const angle::ObjCPtr<id<MTLSamplerState>> &getSampler(ContextMtl *contextMtl);
private:
angle::ObjCPtr<id<MTLSamplerState>> mSamplerState;
// Cache compare mode & func to detect their changes and let ProgramMtl verify that
// GL_TEXTURE_COMPARE_MODE is not GL_NONE on a shadow sampler.
// TODO(http://anglebug.com/42263785): Once the validation code is implemented on front-end, it
// is possible to remove these caching.
GLenum mCompareMode = 0;
GLenum mCompareFunc = 0;
};
} // namespace rx
#endif