public static void Remove(Texture pTextNode)
        {
            // grab the manager
            TextureManager pTextMan = TextureManager.privGetInstance();

            Debug.Assert(pTextMan != null);
            Debug.Assert(pTextNode != null);

            // delegate removal to the managers DLink static methods
            pTextMan.baseRemove(pTextNode);
        }