Ejemplo n.º 1
0
        public static unsafe void LoadTexture(GSTexture texture, int unit)
        {
            IntPtr ptr = IntPtr.Zero;

            if (texture != null)
            {
                ptr = texture.GetPointer();
            }

            libobs.gs_load_texture(ptr, unit);
        }
Ejemplo n.º 2
0
        public static unsafe void LoadTexture(GSTexture texture, int unit)
        {
            IntPtr ptr = IntPtr.Zero;

            if (texture != null)
                ptr = texture.GetPointer();

            libobs.gs_load_texture(ptr, unit);
        }