Edit

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

Branch :

  • Show log

    Commit

  • Author : Shahbaz Youssefi
    Date : 2018-10-02 11:22:01
    Hash : 563fbaa0
    Message : Vulkan: Implement occlusion queries Begin and end queries insert an execution barrier in the command graph to ensure the commands around them are not reordered w.r.t to the query. Also, these commands cannot be recorded in separate secondary command buffers. Therefore, special-function nodes are created to perform the begin and end query calls on the final primary command buffer. Bug: angleproject:2855 Change-Id: Ie216dfdd6a2009deaaf744fd15d2db6899dd93e9 Reviewed-on: https://chromium-review.googlesource.com/c/1259762 Reviewed-by: Geoff Lang <geofflang@chromium.org> Commit-Queue: Shahbaz Youssefi <syoussefi@chromium.org>

  • src/libANGLE/renderer/QueryImpl.cpp
  • //
    // Copyright 2018 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.
    //
    
    // QueryImpl.cpp: Defines the abstract rx::QueryImpl classes.
    
    #include "libANGLE/renderer/QueryImpl.h"
    
    namespace rx
    {
    
    gl::Error QueryImpl::onDestroy(const gl::Context *context)
    {
        return gl::NoError();
    }
    
    }  // namespace rx