mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-23 11:05:40 +00:00
Marked some methods and classes in GLWidget with their CLS compliance.
This commit is contained in:
parent
5b03732763
commit
009f6c5098
|
@ -15,6 +15,7 @@ namespace OpenTK
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The <see cref="GLWidget"/> is a GTK widget for which an OpenGL context can be used to draw arbitrary graphics.
|
/// The <see cref="GLWidget"/> is a GTK widget for which an OpenGL context can be used to draw arbitrary graphics.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
[CLSCompliant(false)]
|
||||||
[ToolboxItem(true)]
|
[ToolboxItem(true)]
|
||||||
public class GLWidget: DrawingArea
|
public class GLWidget: DrawingArea
|
||||||
{
|
{
|
||||||
|
@ -268,6 +269,7 @@ namespace OpenTK
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="cr"></param>
|
/// <param name="cr"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
|
[CLSCompliant(false)]
|
||||||
protected override bool OnDrawn(Cairo.Context cr)
|
protected override bool OnDrawn(Cairo.Context cr)
|
||||||
#else
|
#else
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -275,6 +277,7 @@ namespace OpenTK
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="cr"></param>
|
/// <param name="cr"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
|
[CLSCompliant(false)]
|
||||||
protected override bool OnExposeEvent(Gdk.EventExpose evnt)
|
protected override bool OnExposeEvent(Gdk.EventExpose evnt)
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
|
@ -309,6 +312,7 @@ namespace OpenTK
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="evnt"></param>
|
/// <param name="evnt"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
|
[CLSCompliant(false)]
|
||||||
protected override bool OnConfigureEvent(Gdk.EventConfigure evnt)
|
protected override bool OnConfigureEvent(Gdk.EventConfigure evnt)
|
||||||
{
|
{
|
||||||
bool result = base.OnConfigureEvent(evnt);
|
bool result = base.OnConfigureEvent(evnt);
|
||||||
|
|
Loading…
Reference in a new issue