Edit

kc3-lang/angle/src/libANGLE/renderer/CLSamplerImpl.cpp

Branch :

  • Show log

    Commit

  • Author : John Plate
    Date : 2021-05-24 12:47:38
    Hash : e3dd7161
    Message : CL: sampler object creation for front end and pass-through Add sampler object to back end and implement creation and info query. Bug: angleproject:6001 Change-Id: If5b7d09564d773d6aeda7612728e19bfec7f6155 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2912806 Commit-Queue: John Plate <jplate@google.com> Reviewed-by: Cody Northrop <cnorthrop@google.com> Reviewed-by: Jamie Madill <jmadill@chromium.org>

  • src/libANGLE/renderer/CLSamplerImpl.cpp
  • //
    // 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.cpp: Implements the class methods for CLSamplerImpl.
    
    #include "libANGLE/renderer/CLSamplerImpl.h"
    
    namespace rx
    {
    
    CLSamplerImpl::CLSamplerImpl(const cl::Sampler &sampler) : mSampler(sampler) {}
    
    CLSamplerImpl::~CLSamplerImpl() = default;
    
    }  // namespace rx