OSDN Git Service

Merge branch 'feature/#36529_SlimDXからSharpDXへの移行' into develop
[dtxmania/dtxmania.git] / SlimDXc_Jun2010(VC++2008) / source / direct3d10 / ImageLoadInformation.h
diff --git a/SlimDXc_Jun2010(VC++2008)/source/direct3d10/ImageLoadInformation.h b/SlimDXc_Jun2010(VC++2008)/source/direct3d10/ImageLoadInformation.h
deleted file mode 100644 (file)
index 3f39209..0000000
+++ /dev/null
@@ -1,220 +0,0 @@
-/*\r
-* Copyright (c) 2007-2010 SlimDX Group\r
-* \r
-* Permission is hereby granted, free of charge, to any person obtaining a copy\r
-* of this software and associated documentation files (the "Software"), to deal\r
-* in the Software without restriction, including without limitation the rights\r
-* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r
-* copies of the Software, and to permit persons to whom the Software is\r
-* furnished to do so, subject to the following conditions:\r
-* \r
-* The above copyright notice and this permission notice shall be included in\r
-* all copies or substantial portions of the Software.\r
-* \r
-* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r
-* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r
-* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r
-* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r
-* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r
-* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r
-* THE SOFTWARE.\r
-*/\r
-#pragma once\r
-\r
-#include "../dxgi/Enums.h"\r
-\r
-#include "Enums.h"\r
-\r
-namespace SlimDX\r
-{\r
-       namespace Direct3D10\r
-       {\r
-               /// <summary>\r
-               /// Contains the description of the contents of an image file.\r
-               /// </summary>\r
-               [System::Runtime::InteropServices::StructLayout( System::Runtime::InteropServices::LayoutKind::Sequential )]\r
-               public value class ImageLoadInformation : System::IEquatable<ImageLoadInformation>\r
-               {\r
-               private:\r
-                       int m_Width;\r
-                       int m_Height;\r
-                       int m_Depth;\r
-                       int m_FirstMipLevel;\r
-                       int m_MipLevels;\r
-                       ResourceUsage m_Usage;\r
-                       BindFlags m_BindFlags;\r
-                       CpuAccessFlags m_CPUAccessFlags;\r
-                       ResourceOptionFlags m_MiscFlags;\r
-                       DXGI::Format m_Format;\r
-                       FilterFlags m_Filter;\r
-                       FilterFlags m_MipFilter;\r
-\r
-               internal:\r
-                       ImageLoadInformation( const D3DX10_IMAGE_LOAD_INFO& native );\r
-\r
-                       D3DX10_IMAGE_LOAD_INFO CreateNativeVersion();\r
-\r
-               public:\r
-                       static ImageLoadInformation FromDefaults();\r
-\r
-                       property static int FileDefaultValue\r
-                       {\r
-                               int get();\r
-                       }\r
-                       \r
-                       /// <summary>\r
-                       /// Width of the original image, in pixels.\r
-                       /// </summary>\r
-                       property int Width\r
-                       {\r
-                               int get();\r
-                               void set( int value );\r
-                       }\r
-\r
-                       /// <summary>\r
-                       /// Height of the original image, in pixels.\r
-                       /// </summary>\r
-                       property int Height\r
-                       {\r
-                               int get();\r
-                               void set( int value );\r
-                       }\r
-\r
-                       /// <summary>\r
-                       /// Depth of the original image, in pixels.\r
-                       /// </summary>\r
-                       property int Depth\r
-                       {\r
-                               int get();\r
-                               void set( int value );\r
-                       }\r
-\r
-                       /// <summary>\r
-                       /// The highest resolution mipmap level of the texture; if greater than zero,\r
-                       /// this mipmap level will be mapped to level 0 in the loaded texture.\r
-                       /// </summary>\r
-                       property int FirstMipLevel\r
-                       {\r
-                               int get();\r
-                               void set( int value );\r
-                       }\r
-\r
-                       /// <summary>\r
-                       /// Number of mipmap levels in the original image.\r
-                       /// </summary>\r
-                       property int MipLevels\r
-                       {\r
-                               int get();\r
-                               void set( int value );\r
-                       }\r
-                       \r
-                       /// <summary>\r
-                       /// Gets or sets the intended usage pattern of the loaded texture.\r
-                       /// </summary>\r
-                       property ResourceUsage Usage\r
-                       {\r
-                               ResourceUsage get();\r
-                               void set( ResourceUsage value );\r
-                       }\r
-                       \r
-                       /// <summary>\r
-                       /// Gets or sets the flags specifying how the loaded texture is bound to the pipeline.\r
-                       /// </summary>\r
-                       property Direct3D10::BindFlags BindFlags\r
-                       {\r
-                               Direct3D10::BindFlags get();\r
-                               void set( Direct3D10::BindFlags value );\r
-                       }\r
-                       \r
-                       /// <summary>\r
-                       /// Gets or sets the flags specifying how the CPU will be allowed to access the loaded texture.\r
-                       /// </summary>\r
-                       property Direct3D10::CpuAccessFlags CpuAccessFlags\r
-                       {\r
-                               Direct3D10::CpuAccessFlags get();\r
-                               void set( Direct3D10::CpuAccessFlags value );\r
-                       }\r
-                       \r
-                       /// <summary>\r
-                       /// Gets or sets the flags specifying miscellaneous resource options.\r
-                       /// </summary>\r
-                       property ResourceOptionFlags OptionFlags\r
-                       {\r
-                               ResourceOptionFlags get();\r
-                               void set( ResourceOptionFlags value );\r
-                       }\r
-\r
-                       /// <summary>\r
-                       /// The format of the loaded texture.\r
-                       /// </summary>\r
-                       property DXGI::Format Format\r
-                       {\r
-                               DXGI::Format get();\r
-                               void set( DXGI::Format value );\r
-                       }\r
-\r
-                       /// <summary>\r
-                       /// The filter used when resampling the texture.\r
-                       /// </summary>\r
-                       property Direct3D10::FilterFlags FilterFlags\r
-                       {\r
-                               Direct3D10::FilterFlags get();\r
-                               void set( Direct3D10::FilterFlags value );\r
-                       }\r
-\r
-                       /// <summary>\r
-                       /// The filter used when resampling mipmap levels of the texture.\r
-                       /// </summary>\r
-                       property Direct3D10::FilterFlags MipFilterFlags\r
-                       {\r
-                               Direct3D10::FilterFlags get();\r
-                               void set( Direct3D10::FilterFlags value );\r
-                       }\r
-\r
-                       /// <summary>\r
-                       /// Tests for equality between two objects.\r
-                       /// </summary>\r
-                       /// <param name="left">The first value to compare.</param>\r
-                       /// <param name="right">The second value to compare.</param>\r
-                       /// <returns><c>true</c> if <paramref name="left"/> has the same value as <paramref name="right"/>; otherwise, <c>false</c>.</returns>\r
-                       static bool operator == ( ImageLoadInformation left, ImageLoadInformation right );\r
-\r
-                       /// <summary>\r
-                       /// Tests for inequality between two objects.\r
-                       /// </summary>\r
-                       /// <param name="left">The first value to compare.</param>\r
-                       /// <param name="right">The second value to compare.</param>\r
-                       /// <returns><c>true</c> if <paramref name="left"/> has a different value than <paramref name="right"/>; otherwise, <c>false</c>.</returns>\r
-                       static bool operator != ( ImageLoadInformation left, ImageLoadInformation right );\r
-\r
-                       /// <summary>\r
-                       /// Returns the hash code for this instance.\r
-                       /// </summary>\r
-                       /// <returns>A 32-bit signed integer hash code.</returns>\r
-                       virtual int GetHashCode() override;\r
-\r
-                       /// <summary>\r
-                       /// Returns a value that indicates whether the current instance is equal to a specified object. \r
-                       /// </summary>\r
-                       /// <param name="obj">Object to make the comparison with.</param>\r
-                       /// <returns><c>true</c> if the current instance is equal to the specified object; <c>false</c> otherwise.</returns>\r
-                       virtual bool Equals( System::Object^ obj ) override;\r
-\r
-                       /// <summary>\r
-                       /// Returns a value that indicates whether the current instance is equal to the specified object. \r
-                       /// </summary>\r
-                       /// <param name="other">Object to make the comparison with.</param>\r
-                       /// <returns><c>true</c> if the current instance is equal to the specified object; <c>false</c> otherwise.</returns>\r
-                       virtual bool Equals( ImageLoadInformation other );\r
-\r
-                       /// <summary>\r
-                       /// Determines whether the specified object instances are considered equal. \r
-                       /// </summary>\r
-                       /// <param name="value1">The first value to compare.</param>\r
-                       /// <param name="value2">The second value to compare.</param>\r
-                       /// <returns><c>true</c> if <paramref name="value1"/> is the same instance as <paramref name="value2"/> or \r
-                       /// if both are <c>null</c> references or if <c>value1.Equals(value2)</c> returns <c>true</c>; otherwise, <c>false</c>.</returns>\r
-                       static bool Equals( ImageLoadInformation% value1, ImageLoadInformation% value2 );\r
-               };\r
-       }\r
-}
\ No newline at end of file