public TextureRegion Lock(int x, int y, int width, int height)
    {
        TexturePage page = pool.Alloc(name, width, height, format);

        return(new TextureRegion(x, y, page, this));
    }