Edit

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

Branch :

  • Show log

    Commit

  • Author : Jamie Madill
    Date : 2019-01-15 19:06:47
    Hash : ab2bfa81
    Message : Enable Chromium clang style plugin for libANGLE. This fixes a few style warnings: * auto should not deduce to raw pointer type * inlined virtual methods are not allowed * non-trivial constructors and destructors should be explicit * inlined non-trivial constructors should not be in-class * missing override keywords Bug: angleproject:3069 Change-Id: I3b3e55683691da3ebf6da06a5d3c729c71b6ee53 Reviewed-on: https://chromium-review.googlesource.com/c/1407640 Commit-Queue: Jamie Madill <jmadill@chromium.org> Reviewed-by: Yuly Novikov <ynovikov@chromium.org>

  • src/libANGLE/renderer/SurfaceImpl.cpp
  • //
    // Copyright (c) 2002-2014 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.
    //
    
    // SurfaceImpl.cpp: Implementation of Surface stub method class
    
    #include "libANGLE/renderer/SurfaceImpl.h"
    
    namespace rx
    {
    
    SurfaceImpl::SurfaceImpl(const egl::SurfaceState &state) : mState(state) {}
    
    SurfaceImpl::~SurfaceImpl() {}
    
    egl::Error SurfaceImpl::swapWithDamage(const gl::Context *context, EGLint *rects, EGLint n_rects)
    {
        UNREACHABLE();
        return egl::EglBadSurface() << "swapWithDamage implementation missing.";
    }
    
    egl::Error SurfaceImpl::setPresentationTime(EGLnsecsANDROID time)
    {
        UNREACHABLE();
        return egl::EglBadSurface() << "setPresentationTime implementation missing.";
    }
    
    void SurfaceImpl::setFixedWidth(EGLint width)
    {
        UNREACHABLE();
    }
    
    void SurfaceImpl::setFixedHeight(EGLint height)
    {
        UNREACHABLE();
    }
    
    void SurfaceImpl::setTimestampsEnabled(bool enabled)
    {
        UNREACHABLE();
    }
    
    const angle::Format *SurfaceImpl::getD3DTextureColorFormat() const
    {
        UNREACHABLE();
        return nullptr;
    }
    
    egl::SupportedCompositorTimings SurfaceImpl::getSupportedCompositorTimings() const
    {
        UNREACHABLE();
        return egl::SupportedCompositorTimings();
    }
    
    egl::Error SurfaceImpl::getCompositorTiming(EGLint numTimestamps,
                                                const EGLint *names,
                                                EGLnsecsANDROID *values) const
    {
        UNREACHABLE();
        return egl::EglBadDisplay();
    }
    
    egl::Error SurfaceImpl::getNextFrameId(EGLuint64KHR *frameId) const
    {
        UNREACHABLE();
        return egl::EglBadDisplay();
    }
    
    egl::SupportedTimestamps SurfaceImpl::getSupportedTimestamps() const
    {
        UNREACHABLE();
        return egl::SupportedTimestamps();
    }
    
    egl::Error SurfaceImpl::getFrameTimestamps(EGLuint64KHR frameId,
                                               EGLint numTimestamps,
                                               const EGLint *timestamps,
                                               EGLnsecsANDROID *values) const
    {
        UNREACHABLE();
        return egl::EglBadDisplay();
    }
    
    }  // namespace rx