| 168 | /////////////////////////////////////////// |
| 169 | |
| 170 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern IntPtr tex_find (string id); |
| 171 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern IntPtr tex_create (TexType type = TexType.Image, TexFormat format = TexFormat.Rgba32); |
| 172 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern IntPtr tex_create_color32 ([In] Color32[] data, int width, int height, [MarshalAs(UnmanagedType.Bool)] bool srgb_data); |
| 173 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern IntPtr tex_create_color128 ([In] Color[] data, int width, int height, [MarshalAs(UnmanagedType.Bool)] bool srgb_data); |