Edit

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

Branch :

  • Show log

    Commit

  • Author : John Plate
    Date : 2021-05-28 11:44:54
    Hash : 076974a9
    Message : CL: event creation for front end & passthrough Add event object to back end and implement creation and info query. Bug: angleproject:6001 Change-Id: Id4951b726b66afa289fafe1a716a7cfdb6f5826d Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2925477 Commit-Queue: John Plate <jplate@google.com> Reviewed-by: Jamie Madill <jmadill@chromium.org> Reviewed-by: Cody Northrop <cnorthrop@google.com>

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