All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
WindowsGlTaskContextFactory.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "IGlTaskContextFactory.h"
6 #include "WindowsSharedGlContext.h"
7 
8 namespace Eegeo
9 {
10  namespace Windows
11  {
13  {
14  public:
15  WindowsGlTaskContextFactory(EGLDisplay& display,
16  EGLContext& context,
17  EGLSurface& surface);
18 
20 
22 
23  void UpdateSurface(EGLSurface& surface);
24  private:
25  EGLDisplay& m_display;
26  EGLContext& m_context;
27  EGLSurface& m_surface;
28 
29  Windows::WindowsSharedGlContext* m_pWindowsSharedGlContext;
30  };
31  }
32 }