示例#1
0
文件: DxDLL.cs 项目: Rare25/BarrageDX
		public static int  GetCreateGraphColorData( out COLORDATA  ColorData, out IMAGEFORMATDESC  Format)
		{
			if( System.IntPtr.Size == 4 )
			{
				return dx_GetCreateGraphColorData_x86( out ColorData , out Format );
			}
			else
			{
				return dx_GetCreateGraphColorData_x64( out ColorData , out Format );
			}
		}
示例#2
0
文件: DxDLL.cs 项目: Rare25/BarrageDX
		extern static int  dx_GetCreateGraphColorData_x64( out COLORDATA  ColorData, out IMAGEFORMATDESC  Format);
示例#3
0
文件: DxDLL.cs 项目: Rare25/BarrageDX
		public static int  GetTexFormatIndex( out IMAGEFORMATDESC  Format)
		{
			if( System.IntPtr.Size == 4 )
			{
				return dx_GetTexFormatIndex_x86( out Format );
			}
			else
			{
				return dx_GetTexFormatIndex_x64( out Format );
			}
		}
示例#4
0
文件: DxDLL.cs 项目: Rare25/BarrageDX
		extern static int  dx_GetTexFormatIndex_x64( out IMAGEFORMATDESC  Format);
示例#5
0
		public static int  GetTexFormatIndex( out IMAGEFORMATDESC  Format)
		{
			return dx_GetTexFormatIndex( out Format );
		}
示例#6
0
		public static int  GetCreateGraphColorData( out COLORDATA  ColorData, out IMAGEFORMATDESC  Format)
		{
			return dx_GetCreateGraphColorData( out ColorData , out Format );
		}