Edit

kc3-lang/angle/src/libGLESv2/global_state.h

Branch :

  • Show log

    Commit

  • Author : Jamie Madill
    Date : 2018-11-27 11:34:27
    Hash : b980c563
    Message : Reformat all cpp and h files. This applies git cl format --full to all ANGLE sources. Bug: angleproject:2986 Change-Id: Ib504e618c1589332a37e97696cdc3515d739308f Reviewed-on: https://chromium-review.googlesource.com/c/1351367 Reviewed-by: Jamie Madill <jmadill@chromium.org> Reviewed-by: Shahbaz Youssefi <syoussefi@chromium.org>

  • src/libGLESv2/global_state.h
  • //
    // 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.
    //
    
    // global_state.h : Defines functions for querying the thread-local GL and EGL state.
    
    #ifndef LIBGLESV2_GLOBALSTATE_H_
    #define LIBGLESV2_GLOBALSTATE_H_
    
    #include "libANGLE/Context.h"
    #include "libANGLE/Debug.h"
    #include "libANGLE/Thread.h"
    #include "libANGLE/features.h"
    
    #include <mutex>
    
    namespace egl
    {
    class Debug;
    class Thread;
    
    Thread *GetCurrentThread();
    Debug *GetDebug();
    void SetContextCurrent(Thread *thread, gl::Context *context);
    }  // namespace egl
    
    namespace gl
    {
    extern Context *gSingleThreadedContext;
    
    ANGLE_INLINE Context *GetGlobalContext()
    {
        if (gSingleThreadedContext)
        {
            return gSingleThreadedContext;
        }
    
        egl::Thread *thread = egl::GetCurrentThread();
        return thread->getContext();
    }
    
    ANGLE_INLINE Context *GetValidGlobalContext()
    {
        if (gSingleThreadedContext && !gSingleThreadedContext->isContextLost())
        {
            return gSingleThreadedContext;
        }
    
        egl::Thread *thread = egl::GetCurrentThread();
        return thread->getValidContext();
    }
    
    }  // namespace gl
    
    #if ANGLE_FORCE_THREAD_SAFETY == ANGLE_ENABLED
    namespace angle
    {
    std::mutex &GetGlobalMutex();
    }  // namespace angle
    
    #    define ANGLE_SCOPED_GLOBAL_LOCK() \
            std::lock_guard<std::mutex> globalMutexLock(angle::GetGlobalMutex())
    #else
    #    define ANGLE_SCOPED_GLOBAL_LOCK()
    #endif
    
    #endif  // LIBGLESV2_GLOBALSTATE_H_