Author: rloach
Date: 2006-12-13 03:40:47 -0500 (Wed, 13 Dec 2006)
New Revision: 69439

Modified:
   trunk/Mono.Xna/src/Microsoft.Xna.Framework/Graphics/Texture.cs
   trunk/Mono.Xna/src/Microsoft.Xna.Framework/Graphics/Texture2D.cs
Log:
Filled in Texture (Ravuya).

Modified: trunk/Mono.Xna/src/Microsoft.Xna.Framework/Graphics/Texture.cs
===================================================================
--- trunk/Mono.Xna/src/Microsoft.Xna.Framework/Graphics/Texture.cs      
2006-12-13 07:25:06 UTC (rev 69438)
+++ trunk/Mono.Xna/src/Microsoft.Xna.Framework/Graphics/Texture.cs      
2006-12-13 08:40:47 UTC (rev 69439)
@@ -43,6 +43,7 @@
         
         public int LevelOfDetail { get{ throw new NotImplementedException(); } 
set{ throw new NotImplementedException(); } }
 
+       public override void Dispose(bool __p1) { throw new 
NotImplementedException(); }
         
         public override bool Equals(object obj){ throw new 
NotImplementedException(); }
         
@@ -75,7 +76,18 @@
         public static TextureInformation GetTextureInformation(string 
filename){ throw new NotImplementedException(); }
         
         public static TextureInformation GetTextureInformation(Stream 
textureStream, int numberBytes){ throw new NotImplementedException(); }
+
+       public Type GetType() { throw new NotImplementedException(); }
+
+       public static bool op_Equality(Texture left, Texture right) { throw new 
NotImplementedException(); }
+
+       public static bool op_Equality(GraphicsResource left, GraphicsResource 
right) { throw new NotImplementedException(); }
+
+       public static bool ReferenceEquals(Object a, Object b) { throw new 
NotImplementedException(); }
         
         public void Save(string filename, ImageFileFormat format){ throw new 
NotImplementedException(); }
+
+       public override string ToString() { throw new 
NotImplementedException(); }
+
     }
 }

Modified: trunk/Mono.Xna/src/Microsoft.Xna.Framework/Graphics/Texture2D.cs
===================================================================
--- trunk/Mono.Xna/src/Microsoft.Xna.Framework/Graphics/Texture2D.cs    
2006-12-13 07:25:06 UTC (rev 69438)
+++ trunk/Mono.Xna/src/Microsoft.Xna.Framework/Graphics/Texture2D.cs    
2006-12-13 08:40:47 UTC (rev 69439)
@@ -207,26 +207,31 @@
 
         public static bool operator ==(Texture2D left, Texture2D right) { 
throw new NotImplementedException(); }
 
-
-  
- 
- 
-  
-  
-
         protected override void Dispose(bool __p1) { throw new 
NotImplementedException(); }
 
         public override bool Equals(object obj) { throw new 
NotImplementedException(); }
 
-  
-  
+       public override int GetHashCode() { throw new 
NotImplementedException(); }
  
-  
-   
-  
-       public override int GetHashCode() { throw new 
NotImplementedException(); }
+        public override string ToString() { throw new 
NotImplementedException(); }
 
- 
-        public override string ToString() { throw new 
NotImplementedException(); }
+       public static bool op_Equality(Texture2D left, Texture2D right) { throw 
new NotImplementedException(); }
+
+       public static bool op_Inequality(Texture2D left, Texture2D right) { 
throw new NotImplementedException(); }
+
+       public void GenerateMipMaps(TextureFilter filterType) { throw new 
NotImplementedException(); }
+
+       public static TextureCreationParameters 
GetCreationParameters(GraphicsDevice graphicsDevice, Stream textureStream) { 
throw new NotImplementedException(); }
+
+       public static TextureInformation GetTextureInformation(Stream 
textureStream) { throw new NotImplementedException(); }
+
+       public Type GetType() { throw new NotImplementedException(); }
+
+       public static bool ReferenceEquals(Object objA, Object objB) { throw 
new NotImplementedException(); }
+
+       public void Save(string filename, ImageFileFormat format) { throw new 
NotImplementedException(); }
+
+       public override string ToString() { throw new 
NotImplementedException(); }
+
     }
 }

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to