Hi,

      I am executing the following code and getting a Invalid Enum

            GL.GetInteger(All.BlendSrc, out m_PrevBlendSrc);
            error = GL.GetError();
            if (error != All.NoError)
            {
                Log.WriteLine(LogPriority.Error, "Begin", "GetInteger
Blend Src Error [" + error + "][" + m_PrevBlendSrc + "]");
            }
            GL.GetInteger(All.BlendDst, out m_PrevBlendDst);
            error = GL.GetError();
            if (error != All.NoError)
            {
                Log.WriteLine(LogPriority.Error, "Begin", " GetInteger
Blend Dst Error [" + error + "][" + m_PrevBlendDst + "]");
            }

           I am getting the following error in my Log

           GetInteger Blend Src Error [InvalidEnum]
           GetInteger Blend Dts Error [InvalidEnum]

           Am I doing Something Wrong or is it a Bug.

Sridharan Srinivasan
Alias Sri
Ph:(65)98255785/(65)63922439
www.arshu.com
_______________________________________________
Monodroid mailing list
[email protected]

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid

Reply via email to