Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0029-4.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b925d843815a02273755a65e11cac8fe0b935d60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;
using System.Runtime.InteropServices;

namespace Tsunami {
  public sealed class Gl {

    [DllImport("libGL.so", EntryPoint="glCopyTexSubImage3D", CallingConvention="cdecl", ExactSpelling=true)]
    public static extern void CopyTexSubImage3D ();

  }
}