Преглед изворни кода

Travis CI: API documentation update at 2014-06-28 07:07:40 UTC.
[ci package]

urho3d-travis-ci пре 11 година
родитељ
комит
30dc4aaf57
3 измењених фајлова са 15 додато и 0 уклоњено
  1. 5 0
      Docs/AngelScriptAPI.h
  2. 5 0
      Docs/LuaScriptAPI.dox
  3. 5 0
      Docs/ScriptAPI.dox

+ 5 - 0
Docs/AngelScriptAPI.h

@@ -4297,10 +4297,13 @@ class Image
 {
 // Methods:
 void Clear(const Color&);
+void ClearInt(uint);
 void FlipVertical();
 Color GetPixel(int, int) const;
 Color GetPixel(int, int, int) const;
 Color GetPixelBilinear(float, float) const;
+uint GetPixelInt(int, int) const;
+uint GetPixelInt(int, int, int) const;
 Color GetPixelTrilinear(float, float, float) const;
 Image GetSubimage(const IntRect&) const;
 bool Load(File);
@@ -4317,6 +4320,8 @@ void SaveTGA(const String&) const;
 void SendEvent(const String&, VariantMap& = VariantMap ( ));
 void SetPixel(int, int, const Color&);
 void SetPixel(int, int, int, const Color&);
+void SetPixelInt(int, int, int, uint);
+void SetPixelInt(int, int, uint);
 bool SetSize(int, int, int, uint);
 bool SetSize(int, int, uint);
 

+ 5 - 0
Docs/LuaScriptAPI.dox

@@ -2049,17 +2049,22 @@ Methods:
 - bool SetSize(int width, int height, int depth, unsigned components)
 - void SetPixel(int x, int y, const Color& color)
 - void SetPixel(int x, int y, int z, const Color& color)
+- void SetPixelInt(int x, int y, unsigned uintColor)
+- void SetPixelInt(int x, int y, int z, unsigned uintColor)
 - bool LoadColorLUT(Deserializer& source)
 - bool LoadColorLUT(const String fileName)
 - void FlipVertical()
 - bool Resize(int width, int height)
 - void Clear(const Color& color)
+- void ClearInt(unsigned uintColor)
 - bool SaveBMP(const String fileName) const
 - bool SavePNG(const String fileName) const
 - bool SaveTGA(const String fileName) const
 - bool SaveJPG(const String fileName, int quality) const
 - Color GetPixel(int x, int y) const
 - Color GetPixel(int x, int y, int z) const
+- unsigned GetPixelInt(int x, int y) const
+- unsigned GetPixelInt(int x, int y, int z) const
 - Color GetPixelBilinear(float x, float y) const
 - Color GetPixelTrilinear(float x, float y, float z) const
 - int GetWidth() const

+ 5 - 0
Docs/ScriptAPI.dox

@@ -5566,10 +5566,13 @@ Properties:
 Methods:
 
 - void Clear(const Color&)
+- void ClearInt(uint)
 - void FlipVertical()
 - Color GetPixel(int, int) const
 - Color GetPixel(int, int, int) const
 - Color GetPixelBilinear(float, float) const
+- uint GetPixelInt(int, int) const
+- uint GetPixelInt(int, int, int) const
 - Color GetPixelTrilinear(float, float, float) const
 - Image@ GetSubimage(const IntRect&) const
 - bool Load(File@)
@@ -5586,6 +5589,8 @@ Methods:
 - void SendEvent(const String&, VariantMap& = VariantMap ( ))
 - void SetPixel(int, int, const Color&)
 - void SetPixel(int, int, int, const Color&)
+- void SetPixelInt(int, int, int, uint)
+- void SetPixelInt(int, int, uint)
 - bool SetSize(int, int, int, uint)
 - bool SetSize(int, int, uint)