當前位置: 首頁>>代碼示例>>C#>>正文


C# Egl.EGLDisplay類代碼示例

本文整理匯總了C#中OpenTK.Platform.Egl.EGLDisplay的典型用法代碼示例。如果您正苦於以下問題:C# EGLDisplay類的具體用法?C# EGLDisplay怎麽用?C# EGLDisplay使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


EGLDisplay類屬於OpenTK.Platform.Egl命名空間,在下文中一共展示了EGLDisplay類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: SwapBuffers

 public static extern bool SwapBuffers(EGLDisplay dpy, EGLSurface surface);
開發者ID:White-Wolf,項目名稱:Minesharp,代碼行數:1,代碼來源:Egl.cs

示例2: CreatePlatformWindowSurfaceEXT

 public static extern EGLSurface CreatePlatformWindowSurfaceEXT(EGLDisplay dpy, EGLConfig config, EGLNativeWindowType native_window, int[] attrib_list);
開發者ID:RockyTV,項目名稱:opentk,代碼行數:1,代碼來源:Egl.cs

示例3: CreateContext

 public static EGLContext CreateContext(EGLDisplay dpy, EGLConfig config, EGLContext share_context, int[] attrib_list)
 {
     IntPtr ptr = eglCreateContext(dpy, config, share_context, attrib_list);
     if (ptr == IntPtr.Zero)
         throw new GraphicsContextException(String.Format("Failed to create EGL context, error: {0}.", Egl.GetError()));
     return ptr;
 }
開發者ID:White-Wolf,項目名稱:Minesharp,代碼行數:7,代碼來源:Egl.cs

示例4: MakeCurrent

 public static extern bool MakeCurrent(EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx);
開發者ID:White-Wolf,項目名稱:Minesharp,代碼行數:1,代碼來源:Egl.cs

示例5: SurfaceAttrib

 public static extern bool SurfaceAttrib(EGLDisplay dpy, EGLSurface surface, int attribute, int value);
開發者ID:White-Wolf,項目名稱:Minesharp,代碼行數:1,代碼來源:Egl.cs

示例6: SwapInterval

 public static extern bool SwapInterval(EGLDisplay dpy, int interval);
開發者ID:White-Wolf,項目名稱:Minesharp,代碼行數:1,代碼來源:Egl.cs

示例7: Initialize

 //[return: MarshalAsAttribute(UnmanagedType.I1)]
 public static extern bool Initialize(EGLDisplay dpy, out int major, out int minor);
開發者ID:White-Wolf,項目名稱:Minesharp,代碼行數:2,代碼來源:Egl.cs

示例8: QuerySurface

 public static extern bool QuerySurface(EGLDisplay dpy, EGLSurface surface, int attribute, out int value);
開發者ID:White-Wolf,項目名稱:Minesharp,代碼行數:1,代碼來源:Egl.cs

示例9: GetDisplay

 public static EGLDisplay GetDisplay(EGLNativeDisplayType display_id)
 {
     IntPtr ptr = eglGetDisplay(display_id);
     EGLDisplay ret = new EGLDisplay(ptr);
     return ret;
 }
開發者ID:jcnossen,項目名稱:upspring.net,代碼行數:6,代碼來源:Egl.cs

示例10: CreateWindowSurface

 public static EGLSurface CreateWindowSurface(EGLDisplay dpy, EGLConfig config, IntPtr win, int[] attrib_list)
 {
     IntPtr ptr = eglCreateWindowSurface(dpy, config,  win, attrib_list);
     EGLSurface ret = new EGLSurface(ptr);
     return ret;
 }
開發者ID:jcnossen,項目名稱:upspring.net,代碼行數:6,代碼來源:Egl.cs

示例11: EglWindowInfo

 public EglWindowInfo(IntPtr handle, EGLDisplay display, EGLSurface surface)
 {
     Handle = handle;
     Display = display;
     Surface = surface;
 }
開發者ID:jcnossen,項目名稱:upspring.net,代碼行數:6,代碼來源:EglWindowInfo.cs

示例12: CreatePlatformPixmapSurfaceEXT

 public static extern EGLSurface CreatePlatformPixmapSurfaceEXT(EGLDisplay dpy, EGLConfig config, EGLNativePixmapType native_pixmap, int[] attrib_list);
開發者ID:RockyTV,項目名稱:opentk,代碼行數:1,代碼來源:Egl.cs

示例13: CreatePixmapSurface

 public static extern EGLSurface CreatePixmapSurface(EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, int[] attrib_list);
開發者ID:White-Wolf,項目名稱:Minesharp,代碼行數:1,代碼來源:Egl.cs

示例14: Terminate

 //[return: MarshalAsAttribute(UnmanagedType.I1)]
 public static extern bool Terminate(EGLDisplay dpy);
開發者ID:White-Wolf,項目名稱:Minesharp,代碼行數:2,代碼來源:Egl.cs

示例15: DestroySurface

 public static extern bool DestroySurface(EGLDisplay dpy, EGLSurface surface);
開發者ID:White-Wolf,項目名稱:Minesharp,代碼行數:1,代碼來源:Egl.cs


注:本文中的OpenTK.Platform.Egl.EGLDisplay類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。