Edit

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

Branch :

  • Show log

    Commit

  • Author : Geoff Lang
    Date : 2015-03-19 12:02:50
    Hash : 1aca922a
    Message : Track more information at the egl::Surface level. Many of the members of SurfaceImpl could be stored in egl::Surface instead. This makes SurfaceImpl a pure interface and makes Surface constructors much simpler. BUG=angleproject:795 Change-Id: Ifa797b4bef84afe66f9fb3f3a6be260f726ca55c Reviewed-on: https://chromium-review.googlesource.com/261358 Reviewed-by: Geoff Lang <geofflang@chromium.org> Tested-by: Geoff Lang <geofflang@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()
    {
    }
    
    SurfaceImpl::~SurfaceImpl()
    {
    }
    
    }