| 207 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern int tex_get_height (IntPtr texture); |
| 208 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern void tex_set_sample (IntPtr texture, TexSample sample = TexSample.Linear); |
| 209 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern TexSample tex_get_sample (IntPtr texture); |
| 210 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern void tex_set_address (IntPtr texture, TexAddress address_mode = TexAddress.Wrap); |
| 211 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern TexAddress tex_get_address (IntPtr texture); |
| 212 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern void tex_set_anisotropy (IntPtr texture, int anisotropy_level = 4); |