Edit

kc3-lang/angle/src/libANGLE/renderer/vulkan/CompilerVk.cpp

Branch :

  • Show log

    Commit

  • Author : Jamie Madill
    Date : 2016-11-29 16:20:35
    Hash : e09bd5d3
    Message : Vulkan: Add display creation, test and extension. With this CL we have the ability to create Vulkan test configs and run basic tests, although the only thing that works is creating a Vulkan Renderer using the extension. BUG=angleproject:1319 Change-Id: I8ad17bba01241334be7da16e68fea38762ca6a20 Reviewed-on: https://chromium-review.googlesource.com/367750 Commit-Queue: Jamie Madill <jmadill@chromium.org> Reviewed-by: Corentin Wallez <cwallez@chromium.org>

  • src/libANGLE/renderer/vulkan/CompilerVk.cpp
  • //
    // Copyright 2016 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.
    //
    // CompilerVk.cpp:
    //    Implements the class methods for CompilerVk.
    //
    
    #include "libANGLE/renderer/vulkan/CompilerVk.h"
    
    #include "common/debug.h"
    
    namespace rx
    {
    
    CompilerVk::CompilerVk() : CompilerImpl()
    {
    }
    
    CompilerVk::~CompilerVk()
    {
    }
    
    gl::Error CompilerVk::release()
    {
        return gl::NoError();
    }
    
    ShShaderOutput CompilerVk::getTranslatorOutputType() const
    {
        return SH_GLSL_VULKAN_OUTPUT;
    }
    
    }  // namespace rx