mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-04-30 11:36:28 +00:00
Updated OpenTK.OpenGL.Bind (0.7.7) Split GL enums, core and extensions to different files. Extension support is missing for the time being. Updated the framework implementation and namespace.
20 lines
551 B
C#
20 lines
551 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Drawing;
|
|
|
|
namespace OpenTK.Frameworks
|
|
{
|
|
public partial class Framework
|
|
{
|
|
internal abstract class FrameworkImplementation
|
|
{
|
|
abstract public void OnHandleCreated(object sender, EventArgs args);
|
|
abstract public bool IsIdle();
|
|
abstract public void Setup();
|
|
//abstract public void CloseWindow();
|
|
abstract public bool ToggleFullscreen(bool fullscreen);
|
|
}
|
|
}
|
|
}
|