Edit

kc3-lang/angle/src/libANGLE/Error.cpp

Branch :

  • Show log

    Commit

  • Author : Geoff Lang
    Date : 2014-11-19 14:20:15
    Hash : 2b5420c0
    Message : Merge libGLESv2 and libEGL classes into libANGLE. BUG=angle:733 Change-Id: Ic491c971411fe82c56cd97c5c8325ac14ec218df Reviewed-on: https://chromium-review.googlesource.com/230830 Reviewed-by: Geoff Lang <geofflang@chromium.org> Tested-by: Geoff Lang <geofflang@chromium.org>

  • src/libANGLE/Error.cpp
  • //
    // Copyright (c) 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.
    //
    
    // Error.cpp: Implements the egl::Error and gl::Error classes which encapsulate API errors
    // and optional error messages.
    
    #include "libANGLE/Error.h"
    
    #include "common/angleutils.h"
    
    #include <cstdarg>
    
    namespace gl
    {
    
    Error::Error(GLenum errorCode)
        : mCode(errorCode),
          mMessage()
    {
    }
    
    Error::Error(GLenum errorCode, const char *msg, ...)
        : mCode(errorCode),
          mMessage()
    {
        va_list vararg;
        va_start(vararg, msg);
        mMessage = FormatString(msg, vararg);
        va_end(vararg);
    }
    
    Error::Error(const Error &other)
        : mCode(other.mCode),
          mMessage(other.mMessage)
    {
    }
    
    Error &Error::operator=(const Error &other)
    {
        mCode = other.mCode;
        mMessage = other.mMessage;
        return *this;
    }
    
    }
    
    namespace egl
    {
    
    Error::Error(EGLint errorCode)
        : mCode(errorCode),
          mMessage()
    {
    }
    
    Error::Error(EGLint errorCode, const char *msg, ...)
        : mCode(errorCode),
        mMessage()
    {
        va_list vararg;
        va_start(vararg, msg);
        mMessage = FormatString(msg, vararg);
        va_end(vararg);
    }
    
    Error::Error(const Error &other)
        : mCode(other.mCode),
        mMessage(other.mMessage)
    {
    }
    
    Error &Error::operator=(const Error &other)
    {
        mCode = other.mCode;
        mMessage = other.mMessage;
        return *this;
    }
    
    }