private VO64GraphicsElement(int vaIndex, int vbIndex, int ibIndex)
        {
            _vertices = new List<IVO64Vertex>();
            _indices = new List<IVO64Triangle>();

            _vaoIndex = vaIndex;
            _vboIndex = vbIndex;
            _iboIndex = ibIndex;

            _texture = null;

            Selected = false;
        }
 public void SetTexture(IVO64Texture texture)
 {
     _texture = texture;
     _updatedTexture = true;
 }