Edit

kc3-lang/angle/src/libANGLE/renderer/null/DeviceNULL.cpp

Branch :

  • Show log

    Commit

  • Author : Yuly Novikov
    Date : 2017-03-09 18:45:02
    Hash : c4d18aac
    Message : Use ErrorStream everywhere Eliminates one more usage of FormatString and its static initializer. Add more ErrorStream types and replace gl::Error and egl::Error with them. BUG=angleproject:1644 Change-Id: Ib498d0ae4b81a332ec71aed7cf709993b154e6bb Reviewed-on: https://chromium-review.googlesource.com/505429 Commit-Queue: Yuly Novikov <ynovikov@chromium.org> Reviewed-by: Jamie Madill <jmadill@chromium.org>

  • src/libANGLE/renderer/null/DeviceNULL.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.
    //
    // DeviceNULL.cpp:
    //    Implements the class methods for DeviceNULL.
    //
    
    #include "libANGLE/renderer/null/DeviceNULL.h"
    
    #include "common/debug.h"
    
    namespace rx
    {
    
    DeviceNULL::DeviceNULL() : DeviceImpl()
    {
    }
    
    DeviceNULL::~DeviceNULL()
    {
    }
    
    egl::Error DeviceNULL::getDevice(void **outValue)
    {
        UNIMPLEMENTED();
        return egl::EglBadAccess();
    }
    
    EGLint DeviceNULL::getType()
    {
        return 0;
    }
    
    void DeviceNULL::generateExtensions(egl::DeviceExtensions *outExtensions) const
    {
    }
    
    bool DeviceNULL::deviceExternallySourced()
    {
        return false;
    }
    
    }  // namespace rx