diff --git a/project/README b/project/README deleted file mode 100644 index 433c911..0000000 --- a/project/README +++ /dev/null @@ -1 +0,0 @@ -Most of the development is done on VC12, the remaining projects are often out of date. diff --git a/project/vc10/Nvidia.TextureTools/Nvidia.TextureTools.csproj b/project/vc10/Nvidia.TextureTools/Nvidia.TextureTools.csproj deleted file mode 100644 index e4d8d6f..0000000 --- a/project/vc10/Nvidia.TextureTools/Nvidia.TextureTools.csproj +++ /dev/null @@ -1,55 +0,0 @@ - - - - Debug - AnyCPU - 9.0.21022 - 2.0 - {CAB55C39-8FA9-4912-98D9-E52669C8911D} - Library - Properties - Nvidia.TextureTools - Nvidia.TextureTools - - - 3.5 - - - OnBuildSuccess - v2.0 - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - - - - - - - - - - \ No newline at end of file diff --git a/project/vc10/Nvidia.TextureTools/Properties/AssemblyInfo.cs b/project/vc10/Nvidia.TextureTools/Properties/AssemblyInfo.cs deleted file mode 100644 index ecd652e..0000000 --- a/project/vc10/Nvidia.TextureTools/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,35 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("Nvidia.TextureTools")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("NVIDIA Corporation")] -[assembly: AssemblyProduct("Nvidia.TextureTools")] -[assembly: AssemblyCopyright("Copyright © NVIDIA 2008")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("5fa03fb3-b7a3-4ba8-90e7-545929731356")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/project/vc10/Nvidia.TextureTools/TextureTools.cs b/project/vc10/Nvidia.TextureTools/TextureTools.cs deleted file mode 100644 index 3894da3..0000000 --- a/project/vc10/Nvidia.TextureTools/TextureTools.cs +++ /dev/null @@ -1,534 +0,0 @@ -using System; -using System.Security; -using System.Runtime.InteropServices; - -namespace Nvidia.TextureTools -{ - #region Enums - - #region public enum Format - /// - /// Compression format. - /// - public enum Format - { - // No compression. - RGB, - RGBA = RGB, - - // DX9 formats. - DXT1, - DXT1a, - DXT3, - DXT5, - DXT5n, - - // DX10 formats. - BC1 = DXT1, - BC1a = DXT1a, - BC2 = DXT3, - BC3 = DXT5, - BC3n = DXT5n, - BC4, - BC5, - - DXT1n, // Not supported on CPU yet. - CTX1, // Not supported on CPU yet. - - BC6, - BC7, // Not supported yet. - - DXT1_Luma, - } - #endregion - - #region public enum Quality - /// - /// Quality modes. - /// - public enum Quality - { - Fastest, - Normal, - Production, - Highest, - } - #endregion - - #region public enum WrapMode - /// - /// Wrap modes. - /// - public enum WrapMode - { - Clamp, - Repeat, - Mirror, - } - #endregion - - #region public enum TextureType - /// - /// Texture types. - /// - public enum TextureType - { - Texture2D, - TextureCube, - } - #endregion - - #region public enum InputFormat - /// - /// Input formats. - /// - public enum InputFormat - { - BGRA_8UB - } - #endregion - - #region public enum MipmapFilter - /// - /// Mipmap downsampling filters. - /// - public enum MipmapFilter - { - Box, - Triangle, - Kaiser - } - #endregion - - #region public enum ColorTransform - /// - /// Color transformation. - /// - public enum ColorTransform - { - None, - Linear - } - #endregion - - #region public enum RoundMode - /// - /// Extents rounding mode. - /// - public enum RoundMode - { - None, - ToNextPowerOfTwo, - ToNearestPowerOfTwo, - ToPreviousPowerOfTwo - } - #endregion - - #region public enum AlphaMode - /// - /// Alpha mode. - /// - public enum AlphaMode - { - None, - Transparency, - Premultiplied - } - #endregion - - #region public enum Error - /// - /// Error codes. - /// - public enum Error - { - InvalidInput, - UserInterruption, - UnsupportedFeature, - CudaError, - Unknown, - FileOpen, - FileWrite, - } - #endregion - - #endregion - - #region public class InputOptions - /// - /// Input options. - /// - public class InputOptions - { - #region Bindings - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static IntPtr nvttCreateInputOptions(); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttDestroyInputOptions(IntPtr inputOptions); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsTextureLayout(IntPtr inputOptions, TextureType type, int w, int h, int d); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttResetInputOptionsTextureLayout(IntPtr inputOptions); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static bool nvttSetInputOptionsMipmapData(IntPtr inputOptions, IntPtr data, int w, int h, int d, int face, int mipmap); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsFormat(IntPtr inputOptions, InputFormat format); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsAlphaMode(IntPtr inputOptions, AlphaMode alphaMode); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsGamma(IntPtr inputOptions, float inputGamma, float outputGamma); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsWrapMode(IntPtr inputOptions, WrapMode mode); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsMipmapFilter(IntPtr inputOptions, MipmapFilter filter); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsMipmapGeneration(IntPtr inputOptions, bool generateMipmaps, int maxLevel); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsKaiserParameters(IntPtr inputOptions, float width, float alpha, float stretch); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsNormalMap(IntPtr inputOptions, bool b); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsConvertToNormalMap(IntPtr inputOptions, bool convert); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsHeightEvaluation(IntPtr inputOptions, float redScale, float greenScale, float blueScale, float alphaScale); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsNormalFilter(IntPtr inputOptions, float small, float medium, float big, float large); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsNormalizeMipmaps(IntPtr inputOptions, bool b); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsColorTransform(IntPtr inputOptions, ColorTransform t); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsLinearTransfrom(IntPtr inputOptions, int channel, float w0, float w1, float w2, float w3); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsMaxExtents(IntPtr inputOptions, int d); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsRoundMode(IntPtr inputOptions, RoundMode mode); - #endregion - - internal IntPtr options; - - public InputOptions() - { - options = nvttCreateInputOptions(); - } - ~InputOptions() - { - nvttDestroyInputOptions(options); - } - - public void SetTextureLayout(TextureType type, int w, int h, int d) - { - nvttSetInputOptionsTextureLayout(options, type, w, h, d); - } - public void ResetTextureLayout() - { - nvttResetInputOptionsTextureLayout(options); - } - - public void SetMipmapData(IntPtr data, int width, int height, int depth, int face, int mipmap) - { - nvttSetInputOptionsMipmapData(options, data, width, height, depth, face, mipmap); - } - - public void SetFormat(InputFormat format) - { - nvttSetInputOptionsFormat(options, format); - } - - public void SetAlphaMode(AlphaMode alphaMode) - { - nvttSetInputOptionsAlphaMode(options, alphaMode); - } - - public void SetGamma(float inputGamma, float outputGamma) - { - nvttSetInputOptionsGamma(options, inputGamma, outputGamma); - } - - public void SetWrapMode(WrapMode wrapMode) - { - nvttSetInputOptionsWrapMode(options, wrapMode); - } - - public void SetMipmapFilter(MipmapFilter filter) - { - nvttSetInputOptionsMipmapFilter(options, filter); - } - - public void SetMipmapGeneration(bool enabled) - { - nvttSetInputOptionsMipmapGeneration(options, enabled, -1); - } - - public void SetMipmapGeneration(bool enabled, int maxLevel) - { - nvttSetInputOptionsMipmapGeneration(options, enabled, maxLevel); - } - - public void SetKaiserParameters(float width, float alpha, float stretch) - { - nvttSetInputOptionsKaiserParameters(options, width, alpha, stretch); - } - - public void SetNormalMap(bool b) - { - nvttSetInputOptionsNormalMap(options, b); - } - - public void SetConvertToNormalMap(bool convert) - { - nvttSetInputOptionsConvertToNormalMap(options, convert); - } - - public void SetHeightEvaluation(float redScale, float greenScale, float blueScale, float alphaScale) - { - nvttSetInputOptionsHeightEvaluation(options, redScale, greenScale, blueScale, alphaScale); - } - - public void SetNormalFilter(float small, float medium, float big, float large) - { - nvttSetInputOptionsNormalFilter(options, small, medium, big, large); - } - - public void SetNormalizeMipmaps(bool b) - { - nvttSetInputOptionsNormalizeMipmaps(options, b); - } - - public void SetColorTransform(ColorTransform t) - { - nvttSetInputOptionsColorTransform(options, t); - } - - public void SetLinearTransfrom(int channel, float w0, float w1, float w2, float w3) - { - nvttSetInputOptionsLinearTransfrom(options, channel, w0, w1, w2, w3); - } - - public void SetMaxExtents(int dim) - { - nvttSetInputOptionsMaxExtents(options, dim); - } - - public void SetRoundMode(RoundMode mode) - { - nvttSetInputOptionsRoundMode(options, mode); - } - } - #endregion - - #region public class CompressionOptions - /// - /// Compression options. - /// - public class CompressionOptions - { - #region Bindings - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static IntPtr nvttCreateCompressionOptions(); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttDestroyCompressionOptions(IntPtr compressionOptions); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetCompressionOptionsFormat(IntPtr compressionOptions, Format format); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetCompressionOptionsQuality(IntPtr compressionOptions, Quality quality); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetCompressionOptionsColorWeights(IntPtr compressionOptions, float red, float green, float blue, float alpha); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetCompressionOptionsPixelFormat(IntPtr compressionOptions, uint bitcount, uint rmask, uint gmask, uint bmask, uint amask); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetCompressionOptionsQuantization(IntPtr compressionOptions, bool colorDithering, bool alphaDithering, bool binaryAlpha, int alphaThreshold); - #endregion - - internal IntPtr options; - - public CompressionOptions() - { - options = nvttCreateCompressionOptions(); - } - ~CompressionOptions() - { - nvttDestroyCompressionOptions(options); - } - - public void SetFormat(Format format) - { - nvttSetCompressionOptionsFormat(options, format); - } - - public void SetQuality(Quality quality) - { - nvttSetCompressionOptionsQuality(options, quality); - } - - public void SetColorWeights(float red, float green, float blue) - { - nvttSetCompressionOptionsColorWeights(options, red, green, blue, 1.0f); - } - - public void SetColorWeights(float red, float green, float blue, float alpha) - { - nvttSetCompressionOptionsColorWeights(options, red, green, blue, alpha); - } - - public void SetPixelFormat(uint bitcount, uint rmask, uint gmask, uint bmask, uint amask) - { - nvttSetCompressionOptionsPixelFormat(options, bitcount, rmask, gmask, bmask, amask); - } - - public void SetQuantization(bool colorDithering, bool alphaDithering, bool binaryAlpha) - { - nvttSetCompressionOptionsQuantization(options, colorDithering, alphaDithering, binaryAlpha, 127); - } - - public void SetQuantization(bool colorDithering, bool alphaDithering, bool binaryAlpha, int alphaThreshold) - { - nvttSetCompressionOptionsQuantization(options, colorDithering, alphaDithering, binaryAlpha, alphaThreshold); - } - } - #endregion - - #region public class OutputOptions - /// - /// Output options. - /// - public class OutputOptions - { - #region Delegates - public delegate void ErrorHandler(Error error); - private delegate void WriteDataDelegate(IntPtr data, int size); - private delegate void ImageDelegate(int size, int width, int height, int depth, int face, int miplevel); - #endregion - - #region Bindings - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static IntPtr nvttCreateOutputOptions(); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttDestroyOutputOptions(IntPtr outputOptions); - - [DllImport("nvtt", CharSet = CharSet.Ansi), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetOutputOptionsFileName(IntPtr outputOptions, string fileName); - - //[DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - //private extern static void nvttSetOutputOptionsErrorHandler(IntPtr outputOptions, ErrorHandler errorHandler); - - private void ErrorCallback(Error error) - { - if (Error != null) Error(error); - } - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetOutputOptionsOutputHeader(IntPtr outputOptions, bool b); - - //[DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - //private extern static void nvttSetOutputOptionsOutputHandler(IntPtr outputOptions, WriteDataDelegate writeData, ImageDelegate image); - - #endregion - - internal IntPtr options; - - public OutputOptions() - { - options = nvttCreateOutputOptions(); - //nvttSetOutputOptionsErrorHandler(options, new ErrorHandler(ErrorCallback)); - } - ~OutputOptions() - { - nvttDestroyOutputOptions(options); - } - - public void SetFileName(string fileName) - { - nvttSetOutputOptionsFileName(options, fileName); - } - - public event ErrorHandler Error; - - public void SetOutputHeader(bool b) - { - nvttSetOutputOptionsOutputHeader(options, b); - } - - // @@ Add OutputHandler interface. - } - #endregion - - #region public static class Compressor - public class Compressor - { - #region Bindings - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static IntPtr nvttCreateCompressor(); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttDestroyCompressor(IntPtr compressor); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static bool nvttCompress(IntPtr compressor, IntPtr inputOptions, IntPtr compressionOptions, IntPtr outputOptions); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static int nvttEstimateSize(IntPtr compressor, IntPtr inputOptions, IntPtr compressionOptions); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private static extern IntPtr nvttErrorString(Error error); - - #endregion - - internal IntPtr compressor; - - public Compressor() - { - compressor = nvttCreateCompressor(); - } - - ~Compressor() - { - nvttDestroyCompressor(compressor); - } - - public bool Compress(InputOptions input, CompressionOptions compression, OutputOptions output) - { - return nvttCompress(compressor, input.options, compression.options, output.options); - } - - public int EstimateSize(InputOptions input, CompressionOptions compression) - { - return nvttEstimateSize(compressor, input.options, compression.options); - } - - public static string ErrorString(Error error) - { - return Marshal.PtrToStringAnsi(nvttErrorString(error)); - } - - } - #endregion - -} // Nvidia.TextureTools namespace diff --git a/project/vc10/bc6-01-eigen-solver.vsp b/project/vc10/bc6-01-eigen-solver.vsp deleted file mode 100644 index df0ec66..0000000 Binary files a/project/vc10/bc6-01-eigen-solver.vsp and /dev/null differ diff --git a/project/vc10/bc6-02-no-double.vsp b/project/vc10/bc6-02-no-double.vsp deleted file mode 100644 index 933baa4..0000000 Binary files a/project/vc10/bc6-02-no-double.vsp and /dev/null differ diff --git a/project/vc10/bc6.psess b/project/vc10/bc6.psess deleted file mode 100644 index 1b4f1f0..0000000 --- a/project/vc10/bc6.psess +++ /dev/null @@ -1,105 +0,0 @@ - - - - C:\nvtt\project\vc10\nvtt.sln - Sampling - None - true - true - false - false - Timestamp - Cycles - 10000000 - 10 - 10 - - false - false - - 0 - UnknownDisabled - 0 - - nvcompress - true - mpiexec.exe - true - - - - - - false - 500 - - \Memory\Pages/sec - \PhysicalDisk(_Total)\Avg. Disk Queue Length - \Processor(_Total)\% Processor Time - - - - true - false - - false - - - false - - - - C:\nvtt\project\vc10\Release.x64\bin\nvcompress.exe - 01/01/0001 00:00:00 - true - true - false - false - false - true - false - Executable - C:\nvtt\project\vc10\\Release.x64\bin\nvcompress.exe - C:\nvtt\project\vc10\nvcompress\ - -bc6 -nomips C:\nvtt\data\testsuite\kodak\kodim01.png C:\nvtt\data\testsuite\kodak\kodim01_bc6.dds - IIS - InternetExplorer - true - false - - false - - - false - - {88079E38-83AA-4E8A-B18A-66A78D1B058B}|nvcompress\nvcompress.vcxproj - C:\nvtt\project\vc10\nvcompress\nvcompress.vcxproj - nvcompress - - - - - C:\nvtt\project\vc10\bc6-01-eigen-solver.vsp - - - C:\nvtt\project\vc10\bc6-02-no-double.vsp - - - - - :PB:{88079E38-83AA-4E8A-B18A-66A78D1B058B}|nvcompress\nvcompress.vcxproj - - - - Mark One - Mark Two - Mark Three - Mark Four - Mark Five - Mark Six - Mark Seven - Mark Eight - Mark Nine - Mark Ten - - \ No newline at end of file diff --git a/project/vc10/bc6h/bc6h.vcxproj b/project/vc10/bc6h/bc6h.vcxproj deleted file mode 100755 index 381e803..0000000 --- a/project/vc10/bc6h/bc6h.vcxproj +++ /dev/null @@ -1,144 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {C33787E3-5564-4834-9FE3-A9020455A669} - bc6h - - - - StaticLibrary - MultiByte - true - - - StaticLibrary - MultiByte - - - StaticLibrary - MultiByte - true - - - StaticLibrary - MultiByte - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - - - - Disabled - true - EnableFastChecks - MultiThreadedDebugDLL - Level3 - EditAndContinue - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - - - - - X64 - - - Disabled - true - EnableFastChecks - MultiThreadedDebugDLL - Level3 - ProgramDatabase - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - - - - - MaxSpeed - true - true - MultiThreadedDLL - false - StreamingSIMDExtensions2 - Level3 - ProgramDatabase - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - - - - - X64 - - - MaxSpeed - true - MultiThreadedDLL - false - Level3 - ProgramDatabase - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/project/vc10/bc7/bc7.vcxproj b/project/vc10/bc7/bc7.vcxproj deleted file mode 100644 index 9d052bf..0000000 --- a/project/vc10/bc7/bc7.vcxproj +++ /dev/null @@ -1,152 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {F974F34B-AF02-4C88-8E1E-85475094EA78} - bc7 - - - - StaticLibrary - MultiByte - true - - - StaticLibrary - MultiByte - - - StaticLibrary - MultiByte - true - - - StaticLibrary - MultiByte - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - - - - Disabled - true - EnableFastChecks - MultiThreadedDebugDLL - Level3 - EditAndContinue - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - - - - - X64 - - - Disabled - true - EnableFastChecks - MultiThreadedDebugDLL - Level3 - ProgramDatabase - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - - - - - MaxSpeed - true - true - MultiThreadedDLL - false - StreamingSIMDExtensions2 - Level3 - ProgramDatabase - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - - - - - X64 - - - MaxSpeed - true - MultiThreadedDLL - false - Level3 - ProgramDatabase - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/project/vc10/imperativeapi/imperativeapi.vcxproj b/project/vc10/imperativeapi/imperativeapi.vcxproj deleted file mode 100755 index ff49955..0000000 --- a/project/vc10/imperativeapi/imperativeapi.vcxproj +++ /dev/null @@ -1,176 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {7DCF280E-702B-49F3-84A7-AE7E146384D6} - imperativeapi - - - - Application - MultiByte - true - - - Application - MultiByte - - - Application - MultiByte - true - - - Application - MultiByte - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - - - - Disabled - true - EnableFastChecks - MultiThreadedDebugDLL - Level3 - EditAndContinue - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - MachineX86 - - - - - X64 - - - Disabled - true - EnableFastChecks - MultiThreadedDebugDLL - Level3 - ProgramDatabase - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - - - %(AdditionalLibraryDirectories) - true - MachineX64 - - - - - Full - Default - true - Neither - true - true - MultiThreadedDLL - false - StreamingSIMDExtensions2 - Level3 - ProgramDatabase - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - true - true - MachineX86 - - - - - X64 - - - Full - true - true - true - true - MultiThreadedDLL - false - Level3 - ProgramDatabase - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - - - %(AdditionalLibraryDirectories) - true - true - true - MachineX64 - - - - - - - - {f143d180-d4c4-4037-b3de-be89a21c8d1d} - false - - - {1aeb7681-57d8-48ee-813d-5c41cc38b647} - false - - - - - - \ No newline at end of file diff --git a/project/vc10/nvassemble/nvassemble.rc b/project/vc10/nvassemble/nvassemble.rc deleted file mode 100644 index 842ded1..0000000 Binary files a/project/vc10/nvassemble/nvassemble.rc and /dev/null differ diff --git a/project/vc10/nvassemble/nvassemble.vcxproj b/project/vc10/nvassemble/nvassemble.vcxproj deleted file mode 100755 index 1186e4b..0000000 --- a/project/vc10/nvassemble/nvassemble.vcxproj +++ /dev/null @@ -1,203 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA} - nvassemble - - - - Application - MultiByte - true - - - Application - MultiByte - - - Application - true - MultiByte - - - Application - MultiByte - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - true - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - false - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - Level3 - EditAndContinue - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - false - - - MachineX86 - - - - - X64 - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - - - libpng.lib;jpeg.lib;tiff.lib;%(AdditionalDependencies) - ..\..\..\extern\gnuwin32\lib;%(AdditionalLibraryDirectories) - false - - - MachineX64 - - - - - Full - Default - true - Neither - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - StreamingSIMDExtensions2 - true - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - Console - false - - - MachineX86 - - - - - X64 - - - Full - true - true - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - - - libpng.lib;jpeg.lib;tiff.lib;%(AdditionalDependencies) - ..\..\..\extern\gnuwin32\lib;%(AdditionalLibraryDirectories) - false - - - MachineX64 - - - - - - - - - - - - - - - - - - {c33787e3-5564-4834-9fe3-a9020455a669} - - - {f974f34b-af02-4c88-8e1e-85475094ea78} - - - {f143d180-d4c4-4037-b3de-be89a21c8d1d} - false - - - {4046f392-a18b-4c66-9639-3eabfff5d531} - false - - - {50c465fe-b308-42bc-894d-89484482af06} - false - - - - - - \ No newline at end of file diff --git a/project/vc10/nvassemble/nvassemble.vcxproj.filters b/project/vc10/nvassemble/nvassemble.vcxproj.filters deleted file mode 100755 index 7cb92e6..0000000 --- a/project/vc10/nvassemble/nvassemble.vcxproj.filters +++ /dev/null @@ -1,40 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - - - Source Files - - - - - Header Files - - - Header Files - - - - - Resource Files - - - - - Resource Files - - - \ No newline at end of file diff --git a/project/vc10/nvassemble/nvidia.ico b/project/vc10/nvassemble/nvidia.ico deleted file mode 100644 index 6aa721e..0000000 Binary files a/project/vc10/nvassemble/nvidia.ico and /dev/null differ diff --git a/project/vc10/nvassemble/resource.h b/project/vc10/nvassemble/resource.h deleted file mode 100644 index e765787..0000000 --- a/project/vc10/nvassemble/resource.h +++ /dev/null @@ -1,16 +0,0 @@ -//{{NO_DEPENDENCIES}} -// Microsoft Visual C++ generated include file. -// Used by nvcompress.rc -// -#define IDI_ICON1 101 - -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NEXT_RESOURCE_VALUE 102 -#define _APS_NEXT_COMMAND_VALUE 40001 -#define _APS_NEXT_CONTROL_VALUE 1000 -#define _APS_NEXT_SYMED_VALUE 101 -#endif -#endif diff --git a/project/vc10/nvcompress/nvcompress.rc b/project/vc10/nvcompress/nvcompress.rc deleted file mode 100644 index 842ded1..0000000 Binary files a/project/vc10/nvcompress/nvcompress.rc and /dev/null differ diff --git a/project/vc10/nvcompress/nvcompress.vcxproj b/project/vc10/nvcompress/nvcompress.vcxproj deleted file mode 100755 index 7de782b..0000000 --- a/project/vc10/nvcompress/nvcompress.vcxproj +++ /dev/null @@ -1,381 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Debug-CUDA - Win32 - - - Debug-CUDA - x64 - - - Release - Win32 - - - Release - x64 - - - Release-CUDA - Win32 - - - Release-CUDA - x64 - - - - {88079E38-83AA-4E8A-B18A-66A78D1B058B} - nvcompress - Win32Proj - - - - Application - MultiByte - true - - - Application - MultiByte - - - Application - MultiByte - true - - - Application - MultiByte - - - Application - - - Application - - - Application - MultiByte - true - - - Application - MultiByte - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - true - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - true - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - false - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - false - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - true - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - true - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - false - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - false - - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - EditAndContinue - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - false - - - MachineX86 - - - - - X64 - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;NVDXT_SHARED;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - ProgramDatabase - - - %(AdditionalLibraryDirectories) - true - Console - false - - - MachineX64 - - - - - Full - Default - true - Neither - true - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - StreamingSIMDExtensions2 - - - Level3 - ProgramDatabase - true - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - Console - true - true - false - - - MachineX86 - - - - - X64 - - - Full - true - true - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;NVDXT_SHARED;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - - - Level3 - - - %(AdditionalLibraryDirectories) - Console - true - true - false - - - MachineX64 - - - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - EditAndContinue - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - false - - - MachineX86 - - - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;NVDXT_SHARED;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - Level3 - ProgramDatabase - - - %(AdditionalLibraryDirectories) - true - Console - false - - - MachineX64 - - - - - Full - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - - - Level3 - ProgramDatabase - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - Console - true - true - false - - - MachineX86 - - - - - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;NVDXT_SHARED;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - - - %(AdditionalLibraryDirectories) - Console - true - true - UseLinkTimeCodeGeneration - false - - - MachineX64 - - - - - - - - - - - - - - - true - - - - - {c33787e3-5564-4834-9fe3-a9020455a669} - - - {f974f34b-af02-4c88-8e1e-85475094ea78} - - - {f143d180-d4c4-4037-b3de-be89a21c8d1d} - false - - - {4046f392-a18b-4c66-9639-3eabfff5d531} - false - - - {50c465fe-b308-42bc-894d-89484482af06} - false - - - {1aeb7681-57d8-48ee-813d-5c41cc38b647} - false - - - - - - \ No newline at end of file diff --git a/project/vc10/nvcompress/nvcompress.vcxproj.filters b/project/vc10/nvcompress/nvcompress.vcxproj.filters deleted file mode 100755 index 2185cf2..0000000 --- a/project/vc10/nvcompress/nvcompress.vcxproj.filters +++ /dev/null @@ -1,40 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - - - Source Files - - - - - Header Files - - - Header Files - - - - - Resource Files - - - - - Resource Files - - - \ No newline at end of file diff --git a/project/vc10/nvcompress/nvidia.ico b/project/vc10/nvcompress/nvidia.ico deleted file mode 100644 index 6aa721e..0000000 Binary files a/project/vc10/nvcompress/nvidia.ico and /dev/null differ diff --git a/project/vc10/nvcompress/resource.h b/project/vc10/nvcompress/resource.h deleted file mode 100644 index e765787..0000000 --- a/project/vc10/nvcompress/resource.h +++ /dev/null @@ -1,16 +0,0 @@ -//{{NO_DEPENDENCIES}} -// Microsoft Visual C++ generated include file. -// Used by nvcompress.rc -// -#define IDI_ICON1 101 - -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NEXT_RESOURCE_VALUE 102 -#define _APS_NEXT_COMMAND_VALUE 40001 -#define _APS_NEXT_CONTROL_VALUE 1000 -#define _APS_NEXT_SYMED_VALUE 101 -#endif -#endif diff --git a/project/vc10/nvconfig.h b/project/vc10/nvconfig.h deleted file mode 100644 index 863a1d3..0000000 --- a/project/vc10/nvconfig.h +++ /dev/null @@ -1,22 +0,0 @@ -#ifndef NV_CONFIG -#define NV_CONFIG - -//#cmakedefine HAVE_UNISTD_H -#define HAVE_STDARG_H -//#cmakedefine HAVE_SIGNAL_H -//#cmakedefine HAVE_EXECINFO_H -#define HAVE_MALLOC_H - -#if defined(_OPENMP) -#define HAVE_OPENMP -#endif - -#define HAVE_STBIMAGE -/*#if !defined(_M_X64) -//#define HAVE_FREEIMAGE -#define HAVE_PNG -#define HAVE_JPEG -#define HAVE_TIFF -#endif*/ - -#endif // NV_CONFIG diff --git a/project/vc10/nvcore/nvcore.vcxproj b/project/vc10/nvcore/nvcore.vcxproj deleted file mode 100644 index d8962b2..0000000 --- a/project/vc10/nvcore/nvcore.vcxproj +++ /dev/null @@ -1,174 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} - nvcore - Win32Proj - - - - StaticLibrary - MultiByte - true - - - StaticLibrary - MultiByte - - - StaticLibrary - MultiByte - true - - - StaticLibrary - MultiByte - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_LIB;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - EditAndContinue - - - - - X64 - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_LIB;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - ProgramDatabase - - - - - Full - Default - true - Neither - true - true - WIN32;NDEBUG;_LIB;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - StreamingSIMDExtensions2 - - - Level3 - ProgramDatabase - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - - - - - X64 - - - Full - true - true - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_LIB;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - - - Level3 - ProgramDatabase - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/project/vc10/nvddsinfo/nvddsinfo.rc b/project/vc10/nvddsinfo/nvddsinfo.rc deleted file mode 100644 index 842ded1..0000000 Binary files a/project/vc10/nvddsinfo/nvddsinfo.rc and /dev/null differ diff --git a/project/vc10/nvddsinfo/nvddsinfo.vcxproj b/project/vc10/nvddsinfo/nvddsinfo.vcxproj deleted file mode 100755 index e8131bf..0000000 --- a/project/vc10/nvddsinfo/nvddsinfo.vcxproj +++ /dev/null @@ -1,203 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {841B73C5-C679-4EEF-A50A-7D6106642B49} - nvddsinfo - - - - Application - MultiByte - true - - - Application - MultiByte - - - Application - true - MultiByte - - - Application - MultiByte - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - true - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - false - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - Level3 - EditAndContinue - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - false - - - MachineX86 - - - - - X64 - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - - - libpng.lib;jpeg.lib;tiff.lib;%(AdditionalDependencies) - ..\..\..\extern\gnuwin32\lib;%(AdditionalLibraryDirectories) - false - - - MachineX64 - - - - - Full - Default - true - Neither - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - StreamingSIMDExtensions2 - true - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - Console - false - - - MachineX86 - - - - - X64 - - - Full - true - true - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - - - libpng.lib;jpeg.lib;tiff.lib;%(AdditionalDependencies) - ..\..\..\extern\gnuwin32\lib;%(AdditionalLibraryDirectories) - false - - - MachineX64 - - - - - - - - - - - - - - - - - - {c33787e3-5564-4834-9fe3-a9020455a669} - - - {f974f34b-af02-4c88-8e1e-85475094ea78} - - - {f143d180-d4c4-4037-b3de-be89a21c8d1d} - false - - - {4046f392-a18b-4c66-9639-3eabfff5d531} - false - - - {50c465fe-b308-42bc-894d-89484482af06} - false - - - - - - \ No newline at end of file diff --git a/project/vc10/nvddsinfo/nvddsinfo.vcxproj.filters b/project/vc10/nvddsinfo/nvddsinfo.vcxproj.filters deleted file mode 100755 index 8881e20..0000000 --- a/project/vc10/nvddsinfo/nvddsinfo.vcxproj.filters +++ /dev/null @@ -1,40 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - - - Source Files - - - - - Header Files - - - Header Files - - - - - Resource Files - - - - - Resource Files - - - \ No newline at end of file diff --git a/project/vc10/nvddsinfo/nvidia.ico b/project/vc10/nvddsinfo/nvidia.ico deleted file mode 100644 index 6aa721e..0000000 Binary files a/project/vc10/nvddsinfo/nvidia.ico and /dev/null differ diff --git a/project/vc10/nvddsinfo/resource.h b/project/vc10/nvddsinfo/resource.h deleted file mode 100644 index e765787..0000000 --- a/project/vc10/nvddsinfo/resource.h +++ /dev/null @@ -1,16 +0,0 @@ -//{{NO_DEPENDENCIES}} -// Microsoft Visual C++ generated include file. -// Used by nvcompress.rc -// -#define IDI_ICON1 101 - -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NEXT_RESOURCE_VALUE 102 -#define _APS_NEXT_COMMAND_VALUE 40001 -#define _APS_NEXT_CONTROL_VALUE 1000 -#define _APS_NEXT_SYMED_VALUE 101 -#endif -#endif diff --git a/project/vc10/nvdecompress/nvdecompress.rc b/project/vc10/nvdecompress/nvdecompress.rc deleted file mode 100644 index 842ded1..0000000 Binary files a/project/vc10/nvdecompress/nvdecompress.rc and /dev/null differ diff --git a/project/vc10/nvdecompress/nvdecompress.vcxproj b/project/vc10/nvdecompress/nvdecompress.vcxproj deleted file mode 100755 index e7bff8c..0000000 --- a/project/vc10/nvdecompress/nvdecompress.vcxproj +++ /dev/null @@ -1,229 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {75A0527D-BFC9-49C3-B46B-CD1A901D5927} - nvdecompress - Win32Proj - - - - Application - MultiByte - true - - - Application - MultiByte - - - Application - MultiByte - true - - - Application - MultiByte - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - true - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - true - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - false - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - false - - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - EditAndContinue - - - %(AdditionalDependencies) - $(GnuWinDir)\lib; $(FreeImageDir);%(AdditionalLibraryDirectories) - true - Console - false - - - MachineX86 - - - - - X64 - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;NVDXT_SHARED;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - ProgramDatabase - - - ..\..\..\extern\gnuwin32\lib;%(AdditionalLibraryDirectories) - true - Console - false - - - MachineX64 - - - - - Full - Default - true - Neither - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - StreamingSIMDExtensions2 - - - Level3 - ProgramDatabase - true - - - %(AdditionalDependencies) - $(GnuWinDir)\lib; $(FreeImageDir);%(AdditionalLibraryDirectories) - false - Console - true - true - false - - - MachineX86 - - - - - X64 - - - Full - true - true - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;NVDXT_SHARED;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - - - Level3 - - - ..\..\..\extern\gnuwin32\lib;%(AdditionalLibraryDirectories) - Console - true - true - false - - - MachineX64 - - - - - - - - - - - - - - - true - - - - - {c33787e3-5564-4834-9fe3-a9020455a669} - - - {f974f34b-af02-4c88-8e1e-85475094ea78} - - - {f143d180-d4c4-4037-b3de-be89a21c8d1d} - false - - - {4046f392-a18b-4c66-9639-3eabfff5d531} - false - - - {50c465fe-b308-42bc-894d-89484482af06} - false - - - - - - \ No newline at end of file diff --git a/project/vc10/nvdecompress/nvdecompress.vcxproj.filters b/project/vc10/nvdecompress/nvdecompress.vcxproj.filters deleted file mode 100755 index 2d2e7c3..0000000 --- a/project/vc10/nvdecompress/nvdecompress.vcxproj.filters +++ /dev/null @@ -1,40 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - - - Source Files - - - - - Header Files - - - Header Files - - - - - Resource Files - - - - - Resource Files - - - \ No newline at end of file diff --git a/project/vc10/nvdecompress/nvidia.ico b/project/vc10/nvdecompress/nvidia.ico deleted file mode 100644 index 6aa721e..0000000 Binary files a/project/vc10/nvdecompress/nvidia.ico and /dev/null differ diff --git a/project/vc10/nvdecompress/resource.h b/project/vc10/nvdecompress/resource.h deleted file mode 100644 index e765787..0000000 --- a/project/vc10/nvdecompress/resource.h +++ /dev/null @@ -1,16 +0,0 @@ -//{{NO_DEPENDENCIES}} -// Microsoft Visual C++ generated include file. -// Used by nvcompress.rc -// -#define IDI_ICON1 101 - -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NEXT_RESOURCE_VALUE 102 -#define _APS_NEXT_COMMAND_VALUE 40001 -#define _APS_NEXT_CONTROL_VALUE 1000 -#define _APS_NEXT_SYMED_VALUE 101 -#endif -#endif diff --git a/project/vc10/nvimage/nvimage.vcxproj b/project/vc10/nvimage/nvimage.vcxproj deleted file mode 100755 index 389b523..0000000 --- a/project/vc10/nvimage/nvimage.vcxproj +++ /dev/null @@ -1,180 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {4046F392-A18B-4C66-9639-3EABFFF5D531} - nvimage - Win32Proj - - - - StaticLibrary - MultiByte - true - - - StaticLibrary - MultiByte - - - StaticLibrary - MultiByte - true - - - StaticLibrary - MultiByte - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;$(SolutionDir)\..\..\extern\stb;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_LIB;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - EditAndContinue - - - - - X64 - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;$(SolutionDir)\..\..\extern\stb;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_LIB;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - ProgramDatabase - - - - - Full - Default - true - Neither - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;$(SolutionDir)\..\..\extern\stb;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_LIB;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - StreamingSIMDExtensions2 - - - Level3 - ProgramDatabase - true - - - - - X64 - - - Full - true - true - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;$(SolutionDir)\..\..\extern\stb;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_LIB;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - - - Level3 - ProgramDatabase - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/project/vc10/nvimgdiff/nvidia.ico b/project/vc10/nvimgdiff/nvidia.ico deleted file mode 100644 index 6aa721e..0000000 Binary files a/project/vc10/nvimgdiff/nvidia.ico and /dev/null differ diff --git a/project/vc10/nvimgdiff/nvimgdiff.rc b/project/vc10/nvimgdiff/nvimgdiff.rc deleted file mode 100644 index 842ded1..0000000 Binary files a/project/vc10/nvimgdiff/nvimgdiff.rc and /dev/null differ diff --git a/project/vc10/nvimgdiff/nvimgdiff.vcxproj b/project/vc10/nvimgdiff/nvimgdiff.vcxproj deleted file mode 100755 index c472aa1..0000000 --- a/project/vc10/nvimgdiff/nvimgdiff.vcxproj +++ /dev/null @@ -1,231 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {05A59E8B-EA70-4F22-89E8-E0927BA13064} - nvimgdiff - Win32Proj - - - - Application - MultiByte - true - - - Application - MultiByte - - - Application - MultiByte - true - - - Application - MultiByte - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - true - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - true - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - false - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - false - - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - EditAndContinue - - - %(AdditionalDependencies) - $(GnuWinDir)\lib; $(FreeImageDir);%(AdditionalLibraryDirectories) - true - Console - false - - - MachineX86 - - - - - X64 - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;NVDXT_SHARED;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - ProgramDatabase - - - ..\..\..\extern\gnuwin32\lib;%(AdditionalLibraryDirectories) - true - Console - false - - - MachineX64 - %(AdditionalDependencies) - - - - - Full - Default - true - Neither - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - StreamingSIMDExtensions2 - - - Level3 - ProgramDatabase - true - - - %(AdditionalDependencies) - $(GnuWinDir)\lib; $(FreeImageDir);%(AdditionalLibraryDirectories) - false - Console - true - true - false - - - MachineX86 - - - - - X64 - - - Full - true - true - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;NVDXT_SHARED;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - - - Level3 - - - ..\..\..\extern\gnuwin32\lib;%(AdditionalLibraryDirectories) - Console - true - true - false - - - MachineX64 - %(AdditionalDependencies) - - - - - - - - - - - - true - - - - - - - - {c33787e3-5564-4834-9fe3-a9020455a669} - - - {f974f34b-af02-4c88-8e1e-85475094ea78} - - - {f143d180-d4c4-4037-b3de-be89a21c8d1d} - false - - - {4046f392-a18b-4c66-9639-3eabfff5d531} - false - - - {50c465fe-b308-42bc-894d-89484482af06} - false - - - - - - \ No newline at end of file diff --git a/project/vc10/nvimgdiff/nvimgdiff.vcxproj.filters b/project/vc10/nvimgdiff/nvimgdiff.vcxproj.filters deleted file mode 100755 index b1ae45d..0000000 --- a/project/vc10/nvimgdiff/nvimgdiff.vcxproj.filters +++ /dev/null @@ -1,40 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - - - Source Files - - - - - Header Files - - - Header Files - - - - - Resource Files - - - - - Resource Files - - - \ No newline at end of file diff --git a/project/vc10/nvimgdiff/resource.h b/project/vc10/nvimgdiff/resource.h deleted file mode 100644 index e765787..0000000 --- a/project/vc10/nvimgdiff/resource.h +++ /dev/null @@ -1,16 +0,0 @@ -//{{NO_DEPENDENCIES}} -// Microsoft Visual C++ generated include file. -// Used by nvcompress.rc -// -#define IDI_ICON1 101 - -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NEXT_RESOURCE_VALUE 102 -#define _APS_NEXT_COMMAND_VALUE 40001 -#define _APS_NEXT_CONTROL_VALUE 1000 -#define _APS_NEXT_SYMED_VALUE 101 -#endif -#endif diff --git a/project/vc10/nvmath/nvmath.vcxproj b/project/vc10/nvmath/nvmath.vcxproj deleted file mode 100755 index b12bc73..0000000 --- a/project/vc10/nvmath/nvmath.vcxproj +++ /dev/null @@ -1,182 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {50C465FE-B308-42BC-894D-89484482AF06} - nvmath - Win32Proj - - - - StaticLibrary - MultiByte - true - - - StaticLibrary - MultiByte - - - StaticLibrary - MultiByte - true - - - StaticLibrary - MultiByte - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_LIB;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - EditAndContinue - - - - - X64 - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_LIB;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - ProgramDatabase - - - - - Full - Default - true - Neither - true - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_LIB;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - StreamingSIMDExtensions2 - - - Level3 - ProgramDatabase - true - - - - - X64 - - - Full - true - true - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_LIB;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - - - Level3 - ProgramDatabase - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/project/vc10/nvthread/nvthread.vcxproj b/project/vc10/nvthread/nvthread.vcxproj deleted file mode 100755 index ac53891..0000000 --- a/project/vc10/nvthread/nvthread.vcxproj +++ /dev/null @@ -1,157 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {4CFD4876-A026-46C2-AFCF-FB11346E815D} - nvthread - - - - StaticLibrary - true - MultiByte - - - StaticLibrary - true - MultiByte - - - StaticLibrary - false - true - MultiByte - - - StaticLibrary - false - true - MultiByte - - - - - - - - - - - - - - - - - - - $(Configuration)\$(Platform)\ - - - $(Configuration)\$(Platform)\ - - - $(Configuration)\$(Platform)\ - - - $(Configuration)\$(Platform)\ - - - $(Configuration)\$(Platform)\ - - - $(Configuration)\$(Platform)\ - - - $(Configuration)\$(Platform)\ - - - $(Configuration)\$(Platform)\ - - - - Level3 - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - - - true - - - - - Level3 - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - - - true - - - - - Level3 - MaxSpeed - true - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - - - true - true - true - - - - - Level3 - MaxSpeed - true - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - - - true - true - true - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/project/vc10/nvthread/nvthread.vcxproj.filters b/project/vc10/nvthread/nvthread.vcxproj.filters deleted file mode 100755 index cefe98d..0000000 --- a/project/vc10/nvthread/nvthread.vcxproj.filters +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/project/vc10/nvtt.props b/project/vc10/nvtt.props deleted file mode 100755 index d845180..0000000 --- a/project/vc10/nvtt.props +++ /dev/null @@ -1,9 +0,0 @@ - - - - - $(SolutionDir)..\..\src - $(SolutionDir)..\..\extern - $(ExternDir)\gnuwin32 - - diff --git a/project/vc10/nvtt.sln b/project/vc10/nvtt.sln deleted file mode 100644 index 61c75bc..0000000 --- a/project/vc10/nvtt.sln +++ /dev/null @@ -1,338 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 11.00 -# Visual Studio 2010 -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{A08D9CB4-C9D8-46EF-A74D-0EAB11FE34C5}" - ProjectSection(SolutionItems) = preProject - bc6.psess = bc6.psess - nvconfig.h = nvconfig.h - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvtt", "nvtt\nvtt.vcxproj", "{1AEB7681-57D8-48EE-813D-5C41CC38B647}" - ProjectSection(ProjectDependencies) = postProject - {4CFD4876-A026-46C2-AFCF-FB11346E815D} = {4CFD4876-A026-46C2-AFCF-FB11346E815D} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvcompress", "nvcompress\nvcompress.vcxproj", "{88079E38-83AA-4E8A-B18A-66A78D1B058B}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvimage", "nvimage\nvimage.vcxproj", "{4046F392-A18B-4C66-9639-3EABFFF5D531}" - ProjectSection(ProjectDependencies) = postProject - {50C465FE-B308-42BC-894D-89484482AF06} = {50C465FE-B308-42BC-894D-89484482AF06} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvcore", "nvcore\nvcore.vcxproj", "{F143D180-D4C4-4037-B3DE-BE89A21C8D1D}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvmath", "nvmath\nvmath.vcxproj", "{50C465FE-B308-42BC-894D-89484482AF06}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "squish", "squish\squish.vcxproj", "{CE017322-01FC-4851-9C8B-64E9A8E26C38}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvddsinfo", "nvddsinfo\nvddsinfo.vcxproj", "{841B73C5-C679-4EEF-A50A-7D6106642B49}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvdecompress", "nvdecompress\nvdecompress.vcxproj", "{75A0527D-BFC9-49C3-B46B-CD1A901D5927}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvimgdiff", "nvimgdiff\nvimgdiff.vcxproj", "{05A59E8B-EA70-4F22-89E8-E0927BA13064}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvassemble", "nvassemble\nvassemble.vcxproj", "{3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvzoom", "nvzoom\nvzoom.vcxproj", "{51999D3E-EF22-4BDD-965F-4201034D3DCE}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Nvidia.TextureTools", "Nvidia.TextureTools\Nvidia.TextureTools.csproj", "{CAB55C39-8FA9-4912-98D9-E52669C8911D}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvtt-testsuite", "testsuite\testsuite.vcxproj", "{317B694E-B5C1-42A6-956F-FC12B69175A6}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "imperativeapi", "imperativeapi\imperativeapi.vcxproj", "{7DCF280E-702B-49F3-84A7-AE7E146384D6}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bc6h", "bc6h\bc6h.vcxproj", "{C33787E3-5564-4834-9FE3-A9020455A669}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvthread", "nvthread\nvthread.vcxproj", "{4CFD4876-A026-46C2-AFCF-FB11346E815D}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bc7", "bc7\bc7.vcxproj", "{F974F34B-AF02-4C88-8E1E-85475094EA78}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - Debug-CUDA|Win32 = Debug-CUDA|Win32 - Debug-CUDA|x64 = Debug-CUDA|x64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - Release-CUDA|Win32 = Release-CUDA|Win32 - Release-CUDA|x64 = Release-CUDA|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug|Win32.ActiveCfg = Debug|Win32 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug|Win32.Build.0 = Debug|Win32 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug|x64.ActiveCfg = Debug|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug|x64.Build.0 = Debug|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug-CUDA|Win32.ActiveCfg = Debug-CUDA|Win32 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug-CUDA|Win32.Build.0 = Debug-CUDA|Win32 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug-CUDA|x64.ActiveCfg = Debug-CUDA|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug-CUDA|x64.Build.0 = Debug-CUDA|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release|Win32.ActiveCfg = Release|Win32 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release|Win32.Build.0 = Release|Win32 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release|x64.ActiveCfg = Release|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release|x64.Build.0 = Release|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release-CUDA|Win32.ActiveCfg = Release-CUDA|Win32 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release-CUDA|Win32.Build.0 = Release-CUDA|Win32 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release-CUDA|x64.ActiveCfg = Release-CUDA|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release-CUDA|x64.Build.0 = Release-CUDA|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug|Win32.ActiveCfg = Debug|Win32 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug|Win32.Build.0 = Debug|Win32 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug|x64.ActiveCfg = Debug|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug|x64.Build.0 = Debug|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug-CUDA|Win32.ActiveCfg = Debug-CUDA|Win32 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug-CUDA|Win32.Build.0 = Debug-CUDA|Win32 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug-CUDA|x64.ActiveCfg = Debug-CUDA|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug-CUDA|x64.Build.0 = Debug-CUDA|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release|Win32.ActiveCfg = Release|Win32 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release|Win32.Build.0 = Release|Win32 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release|x64.ActiveCfg = Release|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release|x64.Build.0 = Release|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release-CUDA|Win32.ActiveCfg = Release-CUDA|Win32 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release-CUDA|Win32.Build.0 = Release-CUDA|Win32 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release-CUDA|x64.ActiveCfg = Release-CUDA|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release-CUDA|x64.Build.0 = Release-CUDA|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug|Win32.ActiveCfg = Debug|Win32 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug|Win32.Build.0 = Debug|Win32 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug|x64.ActiveCfg = Debug|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug|x64.Build.0 = Debug|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug-CUDA|x64.Build.0 = Debug|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release|Win32.ActiveCfg = Release|Win32 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release|Win32.Build.0 = Release|Win32 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release|x64.ActiveCfg = Release|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release|x64.Build.0 = Release|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release-CUDA|Win32.Build.0 = Release|Win32 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release-CUDA|x64.ActiveCfg = Release|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release-CUDA|x64.Build.0 = Release|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug|Win32.ActiveCfg = Debug|Win32 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug|Win32.Build.0 = Debug|Win32 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug|x64.ActiveCfg = Debug|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug|x64.Build.0 = Debug|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug-CUDA|x64.Build.0 = Debug|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release|Win32.ActiveCfg = Release|Win32 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release|Win32.Build.0 = Release|Win32 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release|x64.ActiveCfg = Release|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release|x64.Build.0 = Release|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release-CUDA|Win32.Build.0 = Release|Win32 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release-CUDA|x64.ActiveCfg = Release|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release-CUDA|x64.Build.0 = Release|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug|Win32.ActiveCfg = Debug|Win32 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug|Win32.Build.0 = Debug|Win32 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug|x64.ActiveCfg = Debug|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug|x64.Build.0 = Debug|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug-CUDA|x64.Build.0 = Debug|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Release|Win32.ActiveCfg = Release|Win32 - {50C465FE-B308-42BC-894D-89484482AF06}.Release|Win32.Build.0 = Release|Win32 - {50C465FE-B308-42BC-894D-89484482AF06}.Release|x64.ActiveCfg = Release|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Release|x64.Build.0 = Release|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {50C465FE-B308-42BC-894D-89484482AF06}.Release-CUDA|Win32.Build.0 = Release|Win32 - {50C465FE-B308-42BC-894D-89484482AF06}.Release-CUDA|x64.ActiveCfg = Release|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Release-CUDA|x64.Build.0 = Release|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug|Win32.ActiveCfg = Debug|Win32 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug|Win32.Build.0 = Debug|Win32 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug|x64.ActiveCfg = Debug|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug|x64.Build.0 = Debug|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug-CUDA|x64.Build.0 = Debug|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release|Win32.ActiveCfg = Release|Win32 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release|Win32.Build.0 = Release|Win32 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release|x64.ActiveCfg = Release|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release|x64.Build.0 = Release|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release-CUDA|Win32.Build.0 = Release|Win32 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release-CUDA|x64.ActiveCfg = Release|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release-CUDA|x64.Build.0 = Release|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug|Win32.ActiveCfg = Debug|Win32 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug|Win32.Build.0 = Debug|Win32 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug|x64.ActiveCfg = Debug|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug|x64.Build.0 = Debug|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug-CUDA|x64.Build.0 = Debug|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release|Win32.ActiveCfg = Release|Win32 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release|Win32.Build.0 = Release|Win32 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release|x64.ActiveCfg = Release|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release|x64.Build.0 = Release|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release-CUDA|Win32.Build.0 = Release|Win32 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release-CUDA|x64.ActiveCfg = Release|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release-CUDA|x64.Build.0 = Release|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug|Win32.ActiveCfg = Debug|Win32 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug|Win32.Build.0 = Debug|Win32 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug|x64.ActiveCfg = Debug|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug|x64.Build.0 = Debug|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug-CUDA|x64.Build.0 = Debug|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release|Win32.ActiveCfg = Release|Win32 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release|Win32.Build.0 = Release|Win32 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release|x64.ActiveCfg = Release|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release|x64.Build.0 = Release|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release-CUDA|Win32.Build.0 = Release|Win32 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release-CUDA|x64.ActiveCfg = Release|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release-CUDA|x64.Build.0 = Release|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug|Win32.ActiveCfg = Debug|Win32 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug|Win32.Build.0 = Debug|Win32 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug|x64.ActiveCfg = Debug|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug|x64.Build.0 = Debug|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug-CUDA|x64.Build.0 = Debug|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release|Win32.ActiveCfg = Release|Win32 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release|Win32.Build.0 = Release|Win32 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release|x64.ActiveCfg = Release|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release|x64.Build.0 = Release|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release-CUDA|Win32.Build.0 = Release|Win32 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release-CUDA|x64.ActiveCfg = Release|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release-CUDA|x64.Build.0 = Release|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug|Win32.ActiveCfg = Debug|Win32 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug|Win32.Build.0 = Debug|Win32 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug|x64.ActiveCfg = Debug|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug|x64.Build.0 = Debug|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug-CUDA|x64.Build.0 = Debug|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release|Win32.ActiveCfg = Release|Win32 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release|Win32.Build.0 = Release|Win32 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release|x64.ActiveCfg = Release|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release|x64.Build.0 = Release|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release-CUDA|Win32.Build.0 = Release|Win32 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release-CUDA|x64.ActiveCfg = Release|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release-CUDA|x64.Build.0 = Release|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug|Win32.ActiveCfg = Debug|Win32 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug|Win32.Build.0 = Debug|Win32 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug|x64.ActiveCfg = Debug|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug|x64.Build.0 = Debug|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug-CUDA|x64.Build.0 = Debug|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release|Win32.ActiveCfg = Release|Win32 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release|Win32.Build.0 = Release|Win32 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release|x64.ActiveCfg = Release|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release|x64.Build.0 = Release|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release-CUDA|Win32.Build.0 = Release|Win32 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release-CUDA|x64.ActiveCfg = Release|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release-CUDA|x64.Build.0 = Release|x64 - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Debug|Win32.ActiveCfg = Debug|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Debug|Win32.Build.0 = Debug|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Debug|x64.ActiveCfg = Debug|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Debug|x64.Build.0 = Debug|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Debug-CUDA|Win32.ActiveCfg = Debug|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Debug-CUDA|Win32.Build.0 = Debug|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Debug-CUDA|x64.ActiveCfg = Debug|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Debug-CUDA|x64.Build.0 = Debug|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Release|Win32.ActiveCfg = Release|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Release|Win32.Build.0 = Release|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Release|x64.ActiveCfg = Release|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Release|x64.Build.0 = Release|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Release-CUDA|Win32.ActiveCfg = Release|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Release-CUDA|Win32.Build.0 = Release|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Release-CUDA|x64.ActiveCfg = Release|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Release-CUDA|x64.Build.0 = Release|Any CPU - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Debug|Win32.ActiveCfg = Debug|Win32 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Debug|Win32.Build.0 = Debug|Win32 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Debug|x64.ActiveCfg = Debug|x64 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Debug|x64.Build.0 = Debug|x64 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Debug-CUDA|Win32.ActiveCfg = Debug-CUDA|Win32 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Debug-CUDA|Win32.Build.0 = Debug-CUDA|Win32 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Debug-CUDA|x64.ActiveCfg = Debug-CUDA|x64 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Debug-CUDA|x64.Build.0 = Debug-CUDA|x64 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Release|Win32.ActiveCfg = Release|Win32 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Release|Win32.Build.0 = Release|Win32 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Release|x64.ActiveCfg = Release|x64 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Release|x64.Build.0 = Release|x64 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Release-CUDA|Win32.ActiveCfg = Release-CUDA|Win32 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Release-CUDA|Win32.Build.0 = Release-CUDA|Win32 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Release-CUDA|x64.ActiveCfg = Release-CUDA|x64 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Release-CUDA|x64.Build.0 = Release-CUDA|x64 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Debug|Win32.ActiveCfg = Debug|Win32 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Debug|Win32.Build.0 = Debug|Win32 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Debug|x64.ActiveCfg = Debug|x64 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Debug|x64.Build.0 = Debug|x64 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Debug-CUDA|x64.Build.0 = Debug|x64 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Release|Win32.ActiveCfg = Release|Win32 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Release|Win32.Build.0 = Release|Win32 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Release|x64.ActiveCfg = Release|x64 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Release|x64.Build.0 = Release|x64 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Release-CUDA|Win32.Build.0 = Release|Win32 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Release-CUDA|x64.ActiveCfg = Release|x64 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Release-CUDA|x64.Build.0 = Release|x64 - {C33787E3-5564-4834-9FE3-A9020455A669}.Debug|Win32.ActiveCfg = Debug|Win32 - {C33787E3-5564-4834-9FE3-A9020455A669}.Debug|Win32.Build.0 = Debug|Win32 - {C33787E3-5564-4834-9FE3-A9020455A669}.Debug|x64.ActiveCfg = Debug|x64 - {C33787E3-5564-4834-9FE3-A9020455A669}.Debug|x64.Build.0 = Debug|x64 - {C33787E3-5564-4834-9FE3-A9020455A669}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {C33787E3-5564-4834-9FE3-A9020455A669}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {C33787E3-5564-4834-9FE3-A9020455A669}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {C33787E3-5564-4834-9FE3-A9020455A669}.Debug-CUDA|x64.Build.0 = Debug|x64 - {C33787E3-5564-4834-9FE3-A9020455A669}.Release|Win32.ActiveCfg = Release|Win32 - {C33787E3-5564-4834-9FE3-A9020455A669}.Release|Win32.Build.0 = Release|Win32 - {C33787E3-5564-4834-9FE3-A9020455A669}.Release|x64.ActiveCfg = Release|x64 - {C33787E3-5564-4834-9FE3-A9020455A669}.Release|x64.Build.0 = Release|x64 - {C33787E3-5564-4834-9FE3-A9020455A669}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {C33787E3-5564-4834-9FE3-A9020455A669}.Release-CUDA|Win32.Build.0 = Release|Win32 - {C33787E3-5564-4834-9FE3-A9020455A669}.Release-CUDA|x64.ActiveCfg = Release|x64 - {C33787E3-5564-4834-9FE3-A9020455A669}.Release-CUDA|x64.Build.0 = Release|x64 - {4CFD4876-A026-46C2-AFCF-FB11346E815D}.Debug|Win32.ActiveCfg = Debug|Win32 - {4CFD4876-A026-46C2-AFCF-FB11346E815D}.Debug|Win32.Build.0 = Debug|Win32 - {4CFD4876-A026-46C2-AFCF-FB11346E815D}.Debug|x64.ActiveCfg = Debug|x64 - {4CFD4876-A026-46C2-AFCF-FB11346E815D}.Debug|x64.Build.0 = Debug|x64 - {4CFD4876-A026-46C2-AFCF-FB11346E815D}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {4CFD4876-A026-46C2-AFCF-FB11346E815D}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {4CFD4876-A026-46C2-AFCF-FB11346E815D}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {4CFD4876-A026-46C2-AFCF-FB11346E815D}.Debug-CUDA|x64.Build.0 = Debug|x64 - {4CFD4876-A026-46C2-AFCF-FB11346E815D}.Release|Win32.ActiveCfg = Release|Win32 - {4CFD4876-A026-46C2-AFCF-FB11346E815D}.Release|Win32.Build.0 = Release|Win32 - {4CFD4876-A026-46C2-AFCF-FB11346E815D}.Release|x64.ActiveCfg = Release|x64 - {4CFD4876-A026-46C2-AFCF-FB11346E815D}.Release|x64.Build.0 = Release|x64 - {4CFD4876-A026-46C2-AFCF-FB11346E815D}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {4CFD4876-A026-46C2-AFCF-FB11346E815D}.Release-CUDA|Win32.Build.0 = Release|Win32 - {4CFD4876-A026-46C2-AFCF-FB11346E815D}.Release-CUDA|x64.ActiveCfg = Release|x64 - {4CFD4876-A026-46C2-AFCF-FB11346E815D}.Release-CUDA|x64.Build.0 = Release|x64 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Debug|Win32.ActiveCfg = Debug|Win32 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Debug|Win32.Build.0 = Debug|Win32 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Debug|x64.ActiveCfg = Debug|x64 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Debug|x64.Build.0 = Debug|x64 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Debug-CUDA|x64.Build.0 = Debug|x64 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Release|Win32.ActiveCfg = Release|Win32 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Release|Win32.Build.0 = Release|Win32 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Release|x64.ActiveCfg = Release|x64 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Release|x64.Build.0 = Release|x64 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Release-CUDA|Win32.Build.0 = Release|Win32 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Release-CUDA|x64.ActiveCfg = Release|x64 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Release-CUDA|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/project/vc10/nvtt/nvtt.rc b/project/vc10/nvtt/nvtt.rc deleted file mode 100644 index 089d1e9..0000000 --- a/project/vc10/nvtt/nvtt.rc +++ /dev/null @@ -1,102 +0,0 @@ -// Microsoft Visual C++ generated resource script. -// -#include "resource.h" - -#define APSTUDIO_READONLY_SYMBOLS -///////////////////////////////////////////////////////////////////////////// -// -// Generated from the TEXTINCLUDE 2 resource. -// -#include "afxres.h" - -///////////////////////////////////////////////////////////////////////////// -#undef APSTUDIO_READONLY_SYMBOLS - -///////////////////////////////////////////////////////////////////////////// -// English (U.S.) resources - -#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) -#ifdef _WIN32 -LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US -#pragma code_page(1252) -#endif //_WIN32 - -#ifdef APSTUDIO_INVOKED -///////////////////////////////////////////////////////////////////////////// -// -// TEXTINCLUDE -// - -1 TEXTINCLUDE -BEGIN - "resource.h\0" -END - -2 TEXTINCLUDE -BEGIN - "#include ""afxres.h""\r\n" - "\0" -END - -3 TEXTINCLUDE -BEGIN - "\r\n" - "\0" -END - -#endif // APSTUDIO_INVOKED - - -///////////////////////////////////////////////////////////////////////////// -// -// Version -// - -VS_VERSION_INFO VERSIONINFO - FILEVERSION 2,1,0,0 - PRODUCTVERSION 2,1,0,0 - FILEFLAGSMASK 0x17L -#ifdef _DEBUG - FILEFLAGS 0x1L -#else - FILEFLAGS 0x0L -#endif - FILEOS 0x4L - FILETYPE 0x2L - FILESUBTYPE 0x0L -BEGIN - BLOCK "StringFileInfo" - BEGIN - BLOCK "040904b0" - BEGIN - VALUE "CompanyName", "NVIDIA Corporation" - VALUE "FileDescription", "NVIDIA Texture Tools Dynamic Link Library" - VALUE "FileVersion", "2, 1, 0, 0" - VALUE "InternalName", "nvtt" - VALUE "LegalCopyright", "Copyright (C) 2007" - VALUE "OriginalFilename", "nvtt.dll" - VALUE "ProductName", "NVIDIA Texture Tools Dynamic Link Library" - VALUE "ProductVersion", "2, 1, 0, 0" - END - END - BLOCK "VarFileInfo" - BEGIN - VALUE "Translation", 0x409, 1200 - END -END - -#endif // English (U.S.) resources -///////////////////////////////////////////////////////////////////////////// - - - -#ifndef APSTUDIO_INVOKED -///////////////////////////////////////////////////////////////////////////// -// -// Generated from the TEXTINCLUDE 3 resource. -// - - -///////////////////////////////////////////////////////////////////////////// -#endif // not APSTUDIO_INVOKED - diff --git a/project/vc10/nvtt/nvtt.vcxproj b/project/vc10/nvtt/nvtt.vcxproj deleted file mode 100755 index 82673cb..0000000 --- a/project/vc10/nvtt/nvtt.vcxproj +++ /dev/null @@ -1,518 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Debug-CUDA - Win32 - - - Debug-CUDA - x64 - - - Release - Win32 - - - Release - x64 - - - Release-CUDA - Win32 - - - Release-CUDA - x64 - - - - {1AEB7681-57D8-48EE-813D-5C41CC38B647} - nvtt - Win32Proj - - - - DynamicLibrary - NotSet - true - - - DynamicLibrary - NotSet - - - DynamicLibrary - MultiByte - true - - - DynamicLibrary - MultiByte - - - DynamicLibrary - - - DynamicLibrary - - - DynamicLibrary - MultiByte - true - - - DynamicLibrary - MultiByte - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - true - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - true - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - false - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - false - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - true - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - true - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - false - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - false - - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;$(CUDA_INC_PATH);%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;NVTT_EXPORTS;NVTT_SHARED;HAVE_CUDA;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - ProgramDatabase - - - cudart.lib;%(AdditionalDependencies) - $(CUDA_PATH)\lib\Win32;%(AdditionalLibraryDirectories) - true - Windows - false - - - $(SolutionDir)\$(Configuration).$(Platform)\lib\$(ProjectName).lib - MachineX86 - - - Copying header files... - xcopy /y /f /i "$(SolutionDir)\..\..\src\nvtt\nvtt*.h" "$(SolutionDir)\$(Configuration).$(Platform)\include\nvtt\" - - - true - true - -D_DEBUG %(AdditionalOptions) - MDd - RTC1 - ptx - - - - - X64 - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;$(CUDA_INC_PATH);%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;NVTT_EXPORTS;NVTT_SHARED;HAVE_CUDA;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - ProgramDatabase - - - cudart.lib;%(AdditionalDependencies) - $(CUDA_PATH)\lib\x64;%(AdditionalLibraryDirectories) - true - Windows - false - - - $(SolutionDir)\$(Configuration).$(Platform)\lib\$(ProjectName).lib - MachineX64 - - - 64 - -D_DEBUG %(AdditionalOptions) - true - true - MDd - RTC1 - ptx - - - - - Full - Default - true - Neither - true - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;$(CUDA_INC_PATH);%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;NVTT_EXPORTS;NVTT_SHARED;HAVE_CUDA;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - StreamingSIMDExtensions2 - false - - - Level3 - ProgramDatabase - true - - - cudart.lib;%(AdditionalDependencies) - $(CUDA_PATH)\lib\Win32;%(AdditionalLibraryDirectories) - Windows - true - true - false - - - $(SolutionDir)\$(Configuration).$(Platform)\lib\$(ProjectName).lib - MachineX86 - true - - - Copying header files... - xcopy /y /f /i "$(SolutionDir)\..\..\src\nvtt\nvtt*.h" "$(SolutionDir)\$(Configuration).$(Platform)\include\nvtt\" - - - O2 - -DNDEBUG %(AdditionalOptions) - ptx - - - - - X64 - - - Full - true - true - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;$(CUDA_INC_PATH);%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;NVTT_EXPORTS;NVTT_SHARED;HAVE_CUDA;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - - - Level3 - ProgramDatabase - - - cudart.lib;%(AdditionalDependencies) - $(CUDA_PATH)\lib\x64;%(AdditionalLibraryDirectories) - Windows - true - true - false - - - $(SolutionDir)\$(Configuration).$(Platform)\lib\$(ProjectName).lib - MachineX64 - true - - - 64 - O2 - -DNDEBUG %(AdditionalOptions) - ptx - - - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;NVTT_EXPORTS;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - ProgramDatabase - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Windows - false - - - $(SolutionDir)\$(Configuration).$(Platform)\lib\$(ProjectName).lib - MachineX86 - - - Copying header files... - xcopy /y /f /i "$(SolutionDir)\..\..\src\nvtt\nvtt*.h" "$(SolutionDir)\$(Configuration).$(Platform)\include\nvtt\" - - - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;NVTT_EXPORTS;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - Level3 - ProgramDatabase - - - $(CUDA_LIB_PATH)\..\lib64;%(AdditionalLibraryDirectories) - true - Windows - false - - - $(SolutionDir)\$(Configuration).$(Platform)\lib\$(ProjectName).lib - MachineX64 - %(AdditionalDependencies) - - - - - Full - true - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;NVTT_EXPORTS;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - - - Level3 - ProgramDatabase - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - Windows - true - true - false - - - $(SolutionDir)\$(Configuration).$(Platform)\lib\$(ProjectName).lib - MachineX86 - true - - - Copying header files... - xcopy /y /f /i "$(SolutionDir)\..\..\src\nvtt\nvtt*.h" "$(SolutionDir)\$(Configuration).$(Platform)\include\nvtt\" - - - - - true - true - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;NVTT_EXPORTS;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - - - $(CUDA_LIB_PATH)\..\lib64;%(AdditionalLibraryDirectories) - Windows - true - true - UseLinkTimeCodeGeneration - false - - - $(SolutionDir)\$(Configuration).$(Platform)\lib\$(ProjectName).lib - MachineX64 - %(AdditionalDependencies) - true - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Document - true - true - true - true - true - true - true - true - - - - - - - - - - - - - - - - - - - - - - - - - - - {c33787e3-5564-4834-9fe3-a9020455a669} - false - - - {f974f34b-af02-4c88-8e1e-85475094ea78} - - - {f143d180-d4c4-4037-b3de-be89a21c8d1d} - false - - - {4046f392-a18b-4c66-9639-3eabfff5d531} - false - - - {50c465fe-b308-42bc-894d-89484482af06} - false - - - {4cfd4876-a026-46c2-afcf-fb11346e815d} - true - false - false - true - false - - - {ce017322-01fc-4851-9c8b-64e9a8e26c38} - false - - - - - compile - compile - compile - compile - true - true - true - true - - - - - - - \ No newline at end of file diff --git a/project/vc10/nvtt/nvtt.vcxproj.filters b/project/vc10/nvtt/nvtt.vcxproj.filters deleted file mode 100755 index 8dbf23f..0000000 --- a/project/vc10/nvtt/nvtt.vcxproj.filters +++ /dev/null @@ -1,86 +0,0 @@ - - - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - {18fa5da9-6ed8-4990-880e-ab4234fe2114} - - - - - Resource Files - - - - - Resource Files - - - cuda - - - cuda - - - cuda - - - - - - - - - - - - - - - - - - - - - - - - cuda - - - cuda - - - - - - - - - - - - - - - - - - - - - - - cuda - - - - - cuda - - - \ No newline at end of file diff --git a/project/vc10/nvtt/resource.h b/project/vc10/nvtt/resource.h deleted file mode 100644 index 4df7169..0000000 --- a/project/vc10/nvtt/resource.h +++ /dev/null @@ -1,14 +0,0 @@ -//{{NO_DEPENDENCIES}} -// Microsoft Visual C++ generated include file. -// Used by nvtt.rc - -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NEXT_RESOURCE_VALUE 101 -#define _APS_NEXT_COMMAND_VALUE 40001 -#define _APS_NEXT_CONTROL_VALUE 1001 -#define _APS_NEXT_SYMED_VALUE 101 -#endif -#endif diff --git a/project/vc10/nvzoom/nvidia.ico b/project/vc10/nvzoom/nvidia.ico deleted file mode 100644 index 6aa721e..0000000 Binary files a/project/vc10/nvzoom/nvidia.ico and /dev/null differ diff --git a/project/vc10/nvzoom/nvzoom.rc b/project/vc10/nvzoom/nvzoom.rc deleted file mode 100644 index 842ded1..0000000 Binary files a/project/vc10/nvzoom/nvzoom.rc and /dev/null differ diff --git a/project/vc10/nvzoom/nvzoom.vcxproj b/project/vc10/nvzoom/nvzoom.vcxproj deleted file mode 100755 index 656e73c..0000000 --- a/project/vc10/nvzoom/nvzoom.vcxproj +++ /dev/null @@ -1,222 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {51999D3E-EF22-4BDD-965F-4201034D3DCE} - nvzoom - Win32Proj - - - - Application - MultiByte - true - - - Application - MultiByte - - - Application - MultiByte - true - - - Application - MultiByte - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - true - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - true - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - false - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - false - - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - EditAndContinue - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - false - - - MachineX86 - - - - - X64 - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;NVDXT_SHARED;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - ProgramDatabase - - - ..\..\..\extern\gnuwin32\lib;%(AdditionalLibraryDirectories) - true - Console - false - - - MachineX64 - %(AdditionalDependencies) - - - - - Full - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - StreamingSIMDExtensions2 - - - Level3 - ProgramDatabase - true - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - false - Console - true - true - false - - - MachineX86 - - - - - X64 - - - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;NVDXT_SHARED;%(PreprocessorDefinitions) - MultiThreadedDLL - false - - - Level3 - - - ..\..\..\extern\gnuwin32\lib;%(AdditionalLibraryDirectories) - Console - true - true - false - - - MachineX64 - %(AdditionalDependencies) - - - - - - - - - - - - true - - - - - - - - {c33787e3-5564-4834-9fe3-a9020455a669} - - - {f974f34b-af02-4c88-8e1e-85475094ea78} - - - {f143d180-d4c4-4037-b3de-be89a21c8d1d} - false - - - {4046f392-a18b-4c66-9639-3eabfff5d531} - false - - - {50c465fe-b308-42bc-894d-89484482af06} - false - - - - - - \ No newline at end of file diff --git a/project/vc10/nvzoom/nvzoom.vcxproj.filters b/project/vc10/nvzoom/nvzoom.vcxproj.filters deleted file mode 100755 index fff52c9..0000000 --- a/project/vc10/nvzoom/nvzoom.vcxproj.filters +++ /dev/null @@ -1,40 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - - - Source Files - - - - - Header Files - - - Header Files - - - - - Resource Files - - - - - Resource Files - - - \ No newline at end of file diff --git a/project/vc10/nvzoom/resource.h b/project/vc10/nvzoom/resource.h deleted file mode 100644 index e765787..0000000 --- a/project/vc10/nvzoom/resource.h +++ /dev/null @@ -1,16 +0,0 @@ -//{{NO_DEPENDENCIES}} -// Microsoft Visual C++ generated include file. -// Used by nvcompress.rc -// -#define IDI_ICON1 101 - -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NEXT_RESOURCE_VALUE 102 -#define _APS_NEXT_COMMAND_VALUE 40001 -#define _APS_NEXT_CONTROL_VALUE 1000 -#define _APS_NEXT_SYMED_VALUE 101 -#endif -#endif diff --git a/project/vc10/squish/squish.vcxproj b/project/vc10/squish/squish.vcxproj deleted file mode 100755 index d92e74e..0000000 --- a/project/vc10/squish/squish.vcxproj +++ /dev/null @@ -1,182 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {CE017322-01FC-4851-9C8B-64E9A8E26C38} - squish - Win32Proj - - - - StaticLibrary - MultiByte - true - - - StaticLibrary - MultiByte - - - StaticLibrary - MultiByte - true - - - StaticLibrary - MultiByte - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - - - - Disabled - %(AdditionalIncludeDirectories) - WIN32;_DEBUG;_LIB;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - EditAndContinue - - - - - X64 - - - Disabled - %(AdditionalIncludeDirectories) - WIN32;_DEBUG;_LIB;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - ProgramDatabase - - - - - Full - Default - true - Neither - true - true - %(AdditionalIncludeDirectories) - WIN32;NDEBUG;_LIB;__SSE2__;__SSE__;__MMX__;SQUISH_USE_SSE = 2;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - StreamingSIMDExtensions2 - - - Level3 - ProgramDatabase - true - - - - - X64 - - - Full - true - true - true - %(AdditionalIncludeDirectories) - WIN32;NDEBUG;_LIB;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - - - Level3 - ProgramDatabase - - - - - - - - - - - - - - - - - - - - - - {f143d180-d4c4-4037-b3de-be89a21c8d1d} - false - - - {4046f392-a18b-4c66-9639-3eabfff5d531} - false - - - {50c465fe-b308-42bc-894d-89484482af06} - false - - - - - - \ No newline at end of file diff --git a/project/vc10/testsuite/testsuite.vcxproj b/project/vc10/testsuite/testsuite.vcxproj deleted file mode 100755 index d1c211b..0000000 --- a/project/vc10/testsuite/testsuite.vcxproj +++ /dev/null @@ -1,361 +0,0 @@ - - - - - Debug-CUDA - Win32 - - - Debug-CUDA - x64 - - - Debug - Win32 - - - Debug - x64 - - - Release-CUDA - Win32 - - - Release-CUDA - x64 - - - Release - Win32 - - - Release - x64 - - - - nvtt-testsuite - {317B694E-B5C1-42A6-956F-FC12B69175A6} - stress - Win32Proj - - - - Application - Unicode - true - - - Application - Unicode - true - - - Application - Unicode - true - - - Application - Unicode - true - - - Application - Unicode - - - Application - Unicode - - - Application - Unicode - - - Application - Unicode - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - true - true - true - true - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - false - false - false - false - - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - EditAndContinue - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - false - - - MachineX86 - - - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - EditAndContinue - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - false - - - MachineX86 - - - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - ProgramDatabase - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - false - - - - - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - ProgramDatabase - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - false - - - - - - - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - MultiThreadedDLL - StreamingSIMDExtensions2 - - - Level3 - - - true - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - MachineX86 - - - - - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - MultiThreadedDLL - StreamingSIMDExtensions2 - - - Level3 - - - true - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - MachineX86 - - - - - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - MultiThreadedDLL - StreamingSIMDExtensions2 - - - Level3 - - - true - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - - - - - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - MultiThreadedDLL - StreamingSIMDExtensions2 - - - Level3 - - - true - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - - - - - - - - {f143d180-d4c4-4037-b3de-be89a21c8d1d} - false - - - {4046f392-a18b-4c66-9639-3eabfff5d531} - false - - - {1aeb7681-57d8-48ee-813d-5c41cc38b647} - false - - - - - - \ No newline at end of file diff --git a/project/vc12/Nvidia.TextureTools/Nvidia.TextureTools.csproj b/project/vc12/Nvidia.TextureTools/Nvidia.TextureTools.csproj deleted file mode 100644 index e4d8d6f..0000000 --- a/project/vc12/Nvidia.TextureTools/Nvidia.TextureTools.csproj +++ /dev/null @@ -1,55 +0,0 @@ - - - - Debug - AnyCPU - 9.0.21022 - 2.0 - {CAB55C39-8FA9-4912-98D9-E52669C8911D} - Library - Properties - Nvidia.TextureTools - Nvidia.TextureTools - - - 3.5 - - - OnBuildSuccess - v2.0 - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - - - - - - - - - - \ No newline at end of file diff --git a/project/vc12/Nvidia.TextureTools/Properties/AssemblyInfo.cs b/project/vc12/Nvidia.TextureTools/Properties/AssemblyInfo.cs deleted file mode 100644 index ecd652e..0000000 --- a/project/vc12/Nvidia.TextureTools/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,35 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("Nvidia.TextureTools")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("NVIDIA Corporation")] -[assembly: AssemblyProduct("Nvidia.TextureTools")] -[assembly: AssemblyCopyright("Copyright © NVIDIA 2008")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("5fa03fb3-b7a3-4ba8-90e7-545929731356")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/project/vc12/Nvidia.TextureTools/TextureTools.cs b/project/vc12/Nvidia.TextureTools/TextureTools.cs deleted file mode 100644 index ca1bf0c..0000000 --- a/project/vc12/Nvidia.TextureTools/TextureTools.cs +++ /dev/null @@ -1,556 +0,0 @@ -using System; -using System.Security; -using System.Runtime.InteropServices; - -namespace Nvidia.TextureTools -{ - #region Enums - - #region public enum Format - /// - /// Compression format. - /// - public enum Format - { - // No compression. - RGB, - RGBA = RGB, - - // DX9 formats. - DXT1, - DXT1a, - DXT3, - DXT5, - DXT5n, - - // DX10 formats. - BC1 = DXT1, - BC1a = DXT1a, - BC2 = DXT3, - BC3 = DXT5, - BC3n = DXT5n, - BC4, - BC5, - - DXT1n, // Not supported on CPU yet. - CTX1, // Not supported on CPU yet. - - BC6, - BC7, - - BC3_RGBM, - - ETC1, - ETC2_R, - ETC2_RG, - ETC2_RGB, - ETC2_RGBA, - ETC2_RGB_A1, - - ETC2_RGBM, - - PVR_2BPP_RGB, // Using PVR textools. - PVR_4BPP_RGB, - PVR_2BPP_RGBA, - PVR_4BPP_RGBA - } - #endregion - - #region public enum Quality - /// - /// Quality modes. - /// - public enum Quality - { - Fastest, - Normal, - Production, - Highest, - } - #endregion - - #region public enum WrapMode - /// - /// Wrap modes. - /// - public enum WrapMode - { - Clamp, - Repeat, - Mirror, - } - #endregion - - #region public enum TextureType - /// - /// Texture types. - /// - public enum TextureType - { - Texture2D, - TextureCube, - Texture3D, - Texture2DArray - } - #endregion - - #region public enum InputFormat - /// - /// Input formats. - /// - public enum InputFormat - { - BGRA_8UB, // Normalized [0, 1] 8 bit fixed point. - RGBA_16F, // 16 bit floating point. - RGBA_32F, // 32 bit floating point. - R_32F, // Single channel 32 bit floating point. - } - #endregion - - #region public enum MipmapFilter - /// - /// Mipmap downsampling filters. - /// - public enum MipmapFilter - { - Box, - Triangle, - Kaiser - } - #endregion - - #region public enum ColorTransform - /// - /// Color transformation. - /// - public enum ColorTransform - { - None, - Linear - } - #endregion - - #region public enum RoundMode - /// - /// Extents rounding mode. - /// - public enum RoundMode - { - None, - ToNextPowerOfTwo, - ToNearestPowerOfTwo, - ToPreviousPowerOfTwo, - ToNextMultipleOfFour, - ToNearestMultipleOfFour, - ToPreviousMultipleOfFour - } - #endregion - - #region public enum AlphaMode - /// - /// Alpha mode. - /// - public enum AlphaMode - { - None, - Transparency, - Premultiplied - } - #endregion - - #region public enum Error - /// - /// Error codes. - /// - public enum Error - { - InvalidInput, - UserInterruption, - UnsupportedFeature, - CudaError, - Unknown, - FileOpen, - FileWrite, - } - #endregion - - #endregion - - #region public class InputOptions - /// - /// Input options. - /// - public class InputOptions - { - #region Bindings - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static IntPtr nvttCreateInputOptions(); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttDestroyInputOptions(IntPtr inputOptions); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsTextureLayout(IntPtr inputOptions, TextureType type, int w, int h, int d, int arraySize); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttResetInputOptionsTextureLayout(IntPtr inputOptions); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static bool nvttSetInputOptionsMipmapData(IntPtr inputOptions, IntPtr data, int w, int h, int d, int face, int mipmap); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsFormat(IntPtr inputOptions, InputFormat format); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsAlphaMode(IntPtr inputOptions, AlphaMode alphaMode); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsGamma(IntPtr inputOptions, float inputGamma, float outputGamma); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsWrapMode(IntPtr inputOptions, WrapMode mode); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsMipmapFilter(IntPtr inputOptions, MipmapFilter filter); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsMipmapGeneration(IntPtr inputOptions, bool generateMipmaps, int maxLevel); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsKaiserParameters(IntPtr inputOptions, float width, float alpha, float stretch); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsNormalMap(IntPtr inputOptions, bool b); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsConvertToNormalMap(IntPtr inputOptions, bool convert); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsHeightEvaluation(IntPtr inputOptions, float redScale, float greenScale, float blueScale, float alphaScale); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsNormalFilter(IntPtr inputOptions, float small, float medium, float big, float large); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsNormalizeMipmaps(IntPtr inputOptions, bool b); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsColorTransform(IntPtr inputOptions, ColorTransform t); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsLinearTransfrom(IntPtr inputOptions, int channel, float w0, float w1, float w2, float w3); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsMaxExtents(IntPtr inputOptions, int d); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsRoundMode(IntPtr inputOptions, RoundMode mode); - #endregion - - internal IntPtr options; - - public InputOptions() - { - options = nvttCreateInputOptions(); - } - ~InputOptions() - { - nvttDestroyInputOptions(options); - } - - public void SetTextureLayout(TextureType type, int w, int h, int d, int arraySize = 1) - { - nvttSetInputOptionsTextureLayout(options, type, w, h, d, arraySize); - } - public void ResetTextureLayout() - { - nvttResetInputOptionsTextureLayout(options); - } - - public void SetMipmapData(IntPtr data, int width, int height, int depth, int face, int mipmap) - { - nvttSetInputOptionsMipmapData(options, data, width, height, depth, face, mipmap); - } - - public void SetFormat(InputFormat format) - { - nvttSetInputOptionsFormat(options, format); - } - - public void SetAlphaMode(AlphaMode alphaMode) - { - nvttSetInputOptionsAlphaMode(options, alphaMode); - } - - public void SetGamma(float inputGamma, float outputGamma) - { - nvttSetInputOptionsGamma(options, inputGamma, outputGamma); - } - - public void SetWrapMode(WrapMode wrapMode) - { - nvttSetInputOptionsWrapMode(options, wrapMode); - } - - public void SetMipmapFilter(MipmapFilter filter) - { - nvttSetInputOptionsMipmapFilter(options, filter); - } - - public void SetMipmapGeneration(bool enabled) - { - nvttSetInputOptionsMipmapGeneration(options, enabled, -1); - } - - public void SetMipmapGeneration(bool enabled, int maxLevel) - { - nvttSetInputOptionsMipmapGeneration(options, enabled, maxLevel); - } - - public void SetKaiserParameters(float width, float alpha, float stretch) - { - nvttSetInputOptionsKaiserParameters(options, width, alpha, stretch); - } - - public void SetNormalMap(bool b) - { - nvttSetInputOptionsNormalMap(options, b); - } - - public void SetConvertToNormalMap(bool convert) - { - nvttSetInputOptionsConvertToNormalMap(options, convert); - } - - public void SetHeightEvaluation(float redScale, float greenScale, float blueScale, float alphaScale) - { - nvttSetInputOptionsHeightEvaluation(options, redScale, greenScale, blueScale, alphaScale); - } - - public void SetNormalFilter(float small, float medium, float big, float large) - { - nvttSetInputOptionsNormalFilter(options, small, medium, big, large); - } - - public void SetNormalizeMipmaps(bool b) - { - nvttSetInputOptionsNormalizeMipmaps(options, b); - } - - public void SetColorTransform(ColorTransform t) - { - nvttSetInputOptionsColorTransform(options, t); - } - - public void SetLinearTransfrom(int channel, float w0, float w1, float w2, float w3) - { - nvttSetInputOptionsLinearTransfrom(options, channel, w0, w1, w2, w3); - } - - public void SetMaxExtents(int dim) - { - nvttSetInputOptionsMaxExtents(options, dim); - } - - public void SetRoundMode(RoundMode mode) - { - nvttSetInputOptionsRoundMode(options, mode); - } - } - #endregion - - #region public class CompressionOptions - /// - /// Compression options. - /// - public class CompressionOptions - { - #region Bindings - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static IntPtr nvttCreateCompressionOptions(); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttDestroyCompressionOptions(IntPtr compressionOptions); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetCompressionOptionsFormat(IntPtr compressionOptions, Format format); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetCompressionOptionsQuality(IntPtr compressionOptions, Quality quality); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetCompressionOptionsColorWeights(IntPtr compressionOptions, float red, float green, float blue, float alpha); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetCompressionOptionsPixelFormat(IntPtr compressionOptions, uint bitcount, uint rmask, uint gmask, uint bmask, uint amask); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetCompressionOptionsQuantization(IntPtr compressionOptions, bool colorDithering, bool alphaDithering, bool binaryAlpha, int alphaThreshold); - #endregion - - internal IntPtr options; - - public CompressionOptions() - { - options = nvttCreateCompressionOptions(); - } - ~CompressionOptions() - { - nvttDestroyCompressionOptions(options); - } - - public void SetFormat(Format format) - { - nvttSetCompressionOptionsFormat(options, format); - } - - public void SetQuality(Quality quality) - { - nvttSetCompressionOptionsQuality(options, quality); - } - - public void SetColorWeights(float red, float green, float blue) - { - nvttSetCompressionOptionsColorWeights(options, red, green, blue, 1.0f); - } - - public void SetColorWeights(float red, float green, float blue, float alpha) - { - nvttSetCompressionOptionsColorWeights(options, red, green, blue, alpha); - } - - public void SetPixelFormat(uint bitcount, uint rmask, uint gmask, uint bmask, uint amask) - { - nvttSetCompressionOptionsPixelFormat(options, bitcount, rmask, gmask, bmask, amask); - } - - public void SetQuantization(bool colorDithering, bool alphaDithering, bool binaryAlpha) - { - nvttSetCompressionOptionsQuantization(options, colorDithering, alphaDithering, binaryAlpha, 127); - } - - public void SetQuantization(bool colorDithering, bool alphaDithering, bool binaryAlpha, int alphaThreshold) - { - nvttSetCompressionOptionsQuantization(options, colorDithering, alphaDithering, binaryAlpha, alphaThreshold); - } - } - #endregion - - #region public class OutputOptions - /// - /// Output options. - /// - public class OutputOptions - { - #region Delegates - public delegate void ErrorHandler(Error error); - private delegate void WriteDataDelegate(IntPtr data, int size); - private delegate void ImageDelegate(int size, int width, int height, int depth, int face, int miplevel); - #endregion - - #region Bindings - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static IntPtr nvttCreateOutputOptions(); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttDestroyOutputOptions(IntPtr outputOptions); - - [DllImport("nvtt", CharSet = CharSet.Ansi), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetOutputOptionsFileName(IntPtr outputOptions, string fileName); - - //[DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - //private extern static void nvttSetOutputOptionsErrorHandler(IntPtr outputOptions, ErrorHandler errorHandler); - - private void ErrorCallback(Error error) - { - if (Error != null) Error(error); - } - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetOutputOptionsOutputHeader(IntPtr outputOptions, bool b); - - //[DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - //private extern static void nvttSetOutputOptionsOutputHandler(IntPtr outputOptions, WriteDataDelegate writeData, ImageDelegate image); - - #endregion - - internal IntPtr options; - - public OutputOptions() - { - options = nvttCreateOutputOptions(); - //nvttSetOutputOptionsErrorHandler(options, new ErrorHandler(ErrorCallback)); - } - ~OutputOptions() - { - nvttDestroyOutputOptions(options); - } - - public void SetFileName(string fileName) - { - nvttSetOutputOptionsFileName(options, fileName); - } - - public event ErrorHandler Error; - - public void SetOutputHeader(bool b) - { - nvttSetOutputOptionsOutputHeader(options, b); - } - - // @@ Add OutputHandler interface. - } - #endregion - - #region public static class Compressor - public class Compressor - { - #region Bindings - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static IntPtr nvttCreateCompressor(); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttDestroyCompressor(IntPtr compressor); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static bool nvttCompress(IntPtr compressor, IntPtr inputOptions, IntPtr compressionOptions, IntPtr outputOptions); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static int nvttEstimateSize(IntPtr compressor, IntPtr inputOptions, IntPtr compressionOptions); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private static extern IntPtr nvttErrorString(Error error); - - #endregion - - internal IntPtr compressor; - - public Compressor() - { - compressor = nvttCreateCompressor(); - } - - ~Compressor() - { - nvttDestroyCompressor(compressor); - } - - public bool Compress(InputOptions input, CompressionOptions compression, OutputOptions output) - { - return nvttCompress(compressor, input.options, compression.options, output.options); - } - - public int EstimateSize(InputOptions input, CompressionOptions compression) - { - return nvttEstimateSize(compressor, input.options, compression.options); - } - - public static string ErrorString(Error error) - { - return Marshal.PtrToStringAnsi(nvttErrorString(error)); - } - - } - #endregion - -} // Nvidia.TextureTools namespace diff --git a/project/vc12/bc6-01-eigen-solver.vsp b/project/vc12/bc6-01-eigen-solver.vsp deleted file mode 100644 index df0ec66..0000000 Binary files a/project/vc12/bc6-01-eigen-solver.vsp and /dev/null differ diff --git a/project/vc12/bc6-02-no-double.vsp b/project/vc12/bc6-02-no-double.vsp deleted file mode 100644 index 933baa4..0000000 Binary files a/project/vc12/bc6-02-no-double.vsp and /dev/null differ diff --git a/project/vc12/bc6.psess b/project/vc12/bc6.psess deleted file mode 100644 index 1b4f1f0..0000000 --- a/project/vc12/bc6.psess +++ /dev/null @@ -1,105 +0,0 @@ - - - - C:\nvtt\project\vc10\nvtt.sln - Sampling - None - true - true - false - false - Timestamp - Cycles - 10000000 - 10 - 10 - - false - false - - 0 - UnknownDisabled - 0 - - nvcompress - true - mpiexec.exe - true - - - - - - false - 500 - - \Memory\Pages/sec - \PhysicalDisk(_Total)\Avg. Disk Queue Length - \Processor(_Total)\% Processor Time - - - - true - false - - false - - - false - - - - C:\nvtt\project\vc10\Release.x64\bin\nvcompress.exe - 01/01/0001 00:00:00 - true - true - false - false - false - true - false - Executable - C:\nvtt\project\vc10\\Release.x64\bin\nvcompress.exe - C:\nvtt\project\vc10\nvcompress\ - -bc6 -nomips C:\nvtt\data\testsuite\kodak\kodim01.png C:\nvtt\data\testsuite\kodak\kodim01_bc6.dds - IIS - InternetExplorer - true - false - - false - - - false - - {88079E38-83AA-4E8A-B18A-66A78D1B058B}|nvcompress\nvcompress.vcxproj - C:\nvtt\project\vc10\nvcompress\nvcompress.vcxproj - nvcompress - - - - - C:\nvtt\project\vc10\bc6-01-eigen-solver.vsp - - - C:\nvtt\project\vc10\bc6-02-no-double.vsp - - - - - :PB:{88079E38-83AA-4E8A-B18A-66A78D1B058B}|nvcompress\nvcompress.vcxproj - - - - Mark One - Mark Two - Mark Three - Mark Four - Mark Five - Mark Six - Mark Seven - Mark Eight - Mark Nine - Mark Ten - - \ No newline at end of file diff --git a/project/vc12/bc6h/bc6h.vcxproj b/project/vc12/bc6h/bc6h.vcxproj deleted file mode 100644 index 7b75890..0000000 --- a/project/vc12/bc6h/bc6h.vcxproj +++ /dev/null @@ -1,151 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - - - - - - - - - - - - - - {C33787E3-5564-4834-9FE3-A9020455A669} - bc6h - - - - StaticLibrary - MultiByte - true - v120 - - - StaticLibrary - MultiByte - v120 - - - StaticLibrary - MultiByte - true - v120 - - - StaticLibrary - MultiByte - v120 - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - - - - Disabled - false - EnableFastChecks - MultiThreadedDebugDLL - Level3 - EditAndContinue - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - true - - - - - X64 - - - Disabled - false - EnableFastChecks - MultiThreadedDebugDLL - Level3 - ProgramDatabase - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - true - - - - - MaxSpeed - true - true - MultiThreadedDLL - false - StreamingSIMDExtensions2 - Level3 - ProgramDatabase - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - - - - - X64 - - - MaxSpeed - true - MultiThreadedDLL - false - Level3 - ProgramDatabase - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - true - - - - - - \ No newline at end of file diff --git a/project/vc12/bc7/bc7.vcxproj b/project/vc12/bc7/bc7.vcxproj deleted file mode 100644 index 717a3ad..0000000 --- a/project/vc12/bc7/bc7.vcxproj +++ /dev/null @@ -1,159 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - - - - - - - - - - - - - - - - - - - - - - {F974F34B-AF02-4C88-8E1E-85475094EA78} - bc7 - - - - StaticLibrary - MultiByte - true - v120 - - - StaticLibrary - MultiByte - v120 - - - StaticLibrary - MultiByte - true - v120 - - - StaticLibrary - MultiByte - v120 - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - - - - Disabled - false - EnableFastChecks - MultiThreadedDebugDLL - Level3 - EditAndContinue - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - true - - - - - X64 - - - Disabled - false - EnableFastChecks - MultiThreadedDebugDLL - Level3 - ProgramDatabase - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - true - - - - - MaxSpeed - true - true - MultiThreadedDLL - false - StreamingSIMDExtensions2 - Level3 - ProgramDatabase - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - - - - - X64 - - - MaxSpeed - true - MultiThreadedDLL - false - Level3 - ProgramDatabase - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - true - - - - - - \ No newline at end of file diff --git a/project/vc12/imperativeapi/imperativeapi.vcxproj b/project/vc12/imperativeapi/imperativeapi.vcxproj deleted file mode 100644 index 3a03f0d..0000000 --- a/project/vc12/imperativeapi/imperativeapi.vcxproj +++ /dev/null @@ -1,183 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {7DCF280E-702B-49F3-84A7-AE7E146384D6} - imperativeapi - - - - Application - MultiByte - true - v120 - - - Application - MultiByte - v120 - - - Application - MultiByte - true - v120 - - - Application - MultiByte - v120 - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - - - - Disabled - false - EnableFastChecks - MultiThreadedDebugDLL - Level3 - EditAndContinue - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - true - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - MachineX86 - - - - - X64 - - - Disabled - false - EnableFastChecks - MultiThreadedDebugDLL - Level3 - ProgramDatabase - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - true - - - %(AdditionalLibraryDirectories) - true - MachineX64 - - - - - Full - Default - true - Neither - true - true - MultiThreadedDLL - false - StreamingSIMDExtensions2 - Level3 - ProgramDatabase - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - true - true - MachineX86 - - - - - X64 - - - Full - true - true - true - true - MultiThreadedDLL - false - Level3 - ProgramDatabase - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - true - - - %(AdditionalLibraryDirectories) - true - true - true - MachineX64 - - - - - - - - {f143d180-d4c4-4037-b3de-be89a21c8d1d} - false - - - {1aeb7681-57d8-48ee-813d-5c41cc38b647} - false - - - - - - \ No newline at end of file diff --git a/project/vc12/nvassemble/nvassemble.rc b/project/vc12/nvassemble/nvassemble.rc deleted file mode 100644 index 95f6717..0000000 Binary files a/project/vc12/nvassemble/nvassemble.rc and /dev/null differ diff --git a/project/vc12/nvassemble/nvassemble.vcxproj b/project/vc12/nvassemble/nvassemble.vcxproj deleted file mode 100644 index 1905239..0000000 --- a/project/vc12/nvassemble/nvassemble.vcxproj +++ /dev/null @@ -1,210 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA} - nvassemble - - - - Application - MultiByte - true - v120 - - - Application - MultiByte - v120 - - - Application - true - MultiByte - v120 - - - Application - MultiByte - v120 - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - true - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - false - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebugDLL - Level3 - EditAndContinue - true - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - false - - - MachineX86 - - - - - X64 - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - true - - - libpng.lib;jpeg.lib;tiff.lib;%(AdditionalDependencies) - ..\..\..\extern\gnuwin32\lib;%(AdditionalLibraryDirectories) - false - - - MachineX64 - - - - - Full - Default - true - Neither - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - StreamingSIMDExtensions2 - true - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - Console - false - - - MachineX86 - - - - - X64 - - - Full - true - true - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - true - - - libpng.lib;jpeg.lib;tiff.lib;%(AdditionalDependencies) - ..\..\..\extern\gnuwin32\lib;%(AdditionalLibraryDirectories) - false - - - MachineX64 - - - - - - - - - - - - - - - - - - {c33787e3-5564-4834-9fe3-a9020455a669} - - - {f974f34b-af02-4c88-8e1e-85475094ea78} - - - {f143d180-d4c4-4037-b3de-be89a21c8d1d} - false - - - {4046f392-a18b-4c66-9639-3eabfff5d531} - false - - - {50c465fe-b308-42bc-894d-89484482af06} - false - - - - - - \ No newline at end of file diff --git a/project/vc12/nvassemble/nvassemble.vcxproj.filters b/project/vc12/nvassemble/nvassemble.vcxproj.filters deleted file mode 100644 index 7cb92e6..0000000 --- a/project/vc12/nvassemble/nvassemble.vcxproj.filters +++ /dev/null @@ -1,40 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - - - Source Files - - - - - Header Files - - - Header Files - - - - - Resource Files - - - - - Resource Files - - - \ No newline at end of file diff --git a/project/vc12/nvassemble/nvidia.ico b/project/vc12/nvassemble/nvidia.ico deleted file mode 100644 index 6aa721e..0000000 Binary files a/project/vc12/nvassemble/nvidia.ico and /dev/null differ diff --git a/project/vc12/nvassemble/resource.h b/project/vc12/nvassemble/resource.h deleted file mode 100644 index e765787..0000000 --- a/project/vc12/nvassemble/resource.h +++ /dev/null @@ -1,16 +0,0 @@ -//{{NO_DEPENDENCIES}} -// Microsoft Visual C++ generated include file. -// Used by nvcompress.rc -// -#define IDI_ICON1 101 - -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NEXT_RESOURCE_VALUE 102 -#define _APS_NEXT_COMMAND_VALUE 40001 -#define _APS_NEXT_CONTROL_VALUE 1000 -#define _APS_NEXT_SYMED_VALUE 101 -#endif -#endif diff --git a/project/vc12/nvcompress/nvcompress.rc b/project/vc12/nvcompress/nvcompress.rc deleted file mode 100644 index 95f6717..0000000 Binary files a/project/vc12/nvcompress/nvcompress.rc and /dev/null differ diff --git a/project/vc12/nvcompress/nvcompress.vcxproj b/project/vc12/nvcompress/nvcompress.vcxproj deleted file mode 100644 index f12366e..0000000 --- a/project/vc12/nvcompress/nvcompress.vcxproj +++ /dev/null @@ -1,393 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Debug-CUDA - Win32 - - - Debug-CUDA - x64 - - - Release - Win32 - - - Release - x64 - - - Release-CUDA - Win32 - - - Release-CUDA - x64 - - - - {88079E38-83AA-4E8A-B18A-66A78D1B058B} - nvcompress - Win32Proj - - - - Application - MultiByte - true - v120 - - - Application - MultiByte - v120 - - - Application - MultiByte - true - v120 - - - Application - MultiByte - v120 - - - Application - v120 - - - Application - v120 - - - Application - MultiByte - true - v120 - - - Application - MultiByte - v120 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - true - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - true - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - false - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - false - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - true - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - true - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - false - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - false - - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - EditAndContinue - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - false - - - MachineX86 - - - - - X64 - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;NVDXT_SHARED;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - ProgramDatabase - - - %(AdditionalLibraryDirectories) - true - Console - false - - - MachineX64 - - - - - Full - Default - true - Neither - true - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - StreamingSIMDExtensions2 - - - Level3 - ProgramDatabase - true - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - Console - true - true - false - - - MachineX86 - - - - - X64 - - - Full - true - true - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;NVDXT_SHARED;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - - - Level3 - - - %(AdditionalLibraryDirectories) - Console - true - true - false - - - MachineX64 - - - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - EditAndContinue - true - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - false - - - MachineX86 - - - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;NVDXT_SHARED;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebugDLL - Level3 - ProgramDatabase - true - - - %(AdditionalLibraryDirectories) - true - Console - false - - - MachineX64 - - - - - Full - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - - - Level3 - ProgramDatabase - true - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - Console - true - true - false - - - MachineX86 - - - - - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;NVDXT_SHARED;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - true - - - %(AdditionalLibraryDirectories) - Console - true - true - UseLinkTimeCodeGeneration - false - - - MachineX64 - - - - - - - - - - - - - - - true - - - - - {c33787e3-5564-4834-9fe3-a9020455a669} - - - {f974f34b-af02-4c88-8e1e-85475094ea78} - - - {f143d180-d4c4-4037-b3de-be89a21c8d1d} - false - - - {4046f392-a18b-4c66-9639-3eabfff5d531} - false - - - {50c465fe-b308-42bc-894d-89484482af06} - false - - - {1aeb7681-57d8-48ee-813d-5c41cc38b647} - false - - - - - - \ No newline at end of file diff --git a/project/vc12/nvcompress/nvcompress.vcxproj.filters b/project/vc12/nvcompress/nvcompress.vcxproj.filters deleted file mode 100644 index 2185cf2..0000000 --- a/project/vc12/nvcompress/nvcompress.vcxproj.filters +++ /dev/null @@ -1,40 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - - - Source Files - - - - - Header Files - - - Header Files - - - - - Resource Files - - - - - Resource Files - - - \ No newline at end of file diff --git a/project/vc12/nvcompress/nvidia.ico b/project/vc12/nvcompress/nvidia.ico deleted file mode 100644 index 6aa721e..0000000 Binary files a/project/vc12/nvcompress/nvidia.ico and /dev/null differ diff --git a/project/vc12/nvcompress/resource.h b/project/vc12/nvcompress/resource.h deleted file mode 100644 index e765787..0000000 --- a/project/vc12/nvcompress/resource.h +++ /dev/null @@ -1,16 +0,0 @@ -//{{NO_DEPENDENCIES}} -// Microsoft Visual C++ generated include file. -// Used by nvcompress.rc -// -#define IDI_ICON1 101 - -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NEXT_RESOURCE_VALUE 102 -#define _APS_NEXT_COMMAND_VALUE 40001 -#define _APS_NEXT_CONTROL_VALUE 1000 -#define _APS_NEXT_SYMED_VALUE 101 -#endif -#endif diff --git a/project/vc12/nvconfig.h b/project/vc12/nvconfig.h deleted file mode 100644 index 18c31fa..0000000 --- a/project/vc12/nvconfig.h +++ /dev/null @@ -1,22 +0,0 @@ -#ifndef NV_CONFIG -#define NV_CONFIG - -//#cmakedefine HAVE_UNISTD_H -//#define HAVE_STDARG_H -//#cmakedefine HAVE_SIGNAL_H -//#cmakedefine HAVE_EXECINFO_H -//#define HAVE_MALLOC_H - -#if defined(_OPENMP) -#define HAVE_OPENMP -#endif - -#define NV_HAVE_STBIMAGE -/*#if !defined(_M_X64) -//#define NV_HAVE_FREEIMAGE -#define NV_HAVE_PNG -#define NV_HAVE_JPEG -#define NV_HAVE_TIFF -#endif*/ - -#endif // NV_CONFIG diff --git a/project/vc12/nvcore/nvcore.vcxproj b/project/vc12/nvcore/nvcore.vcxproj deleted file mode 100644 index 733f6a9..0000000 --- a/project/vc12/nvcore/nvcore.vcxproj +++ /dev/null @@ -1,180 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} - nvcore - Win32Proj - - - - StaticLibrary - MultiByte - true - v120 - - - StaticLibrary - MultiByte - v120 - - - StaticLibrary - MultiByte - true - v120 - - - StaticLibrary - MultiByte - v120 - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_LIB;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - EditAndContinue - true - - - - - X64 - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_LIB;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - ProgramDatabase - true - - - - - Full - Default - true - Neither - true - true - WIN32;NDEBUG;_LIB;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - StreamingSIMDExtensions2 - - - Level3 - ProgramDatabase - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - - - - - X64 - - - Full - true - true - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_LIB;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - - - Level3 - ProgramDatabase - true - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/project/vc12/nvddsinfo/nvddsinfo.rc b/project/vc12/nvddsinfo/nvddsinfo.rc deleted file mode 100644 index 95f6717..0000000 Binary files a/project/vc12/nvddsinfo/nvddsinfo.rc and /dev/null differ diff --git a/project/vc12/nvddsinfo/nvddsinfo.vcxproj b/project/vc12/nvddsinfo/nvddsinfo.vcxproj deleted file mode 100644 index 24b3611..0000000 --- a/project/vc12/nvddsinfo/nvddsinfo.vcxproj +++ /dev/null @@ -1,210 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {841B73C5-C679-4EEF-A50A-7D6106642B49} - nvddsinfo - - - - Application - MultiByte - true - v120 - - - Application - MultiByte - v120 - - - Application - true - MultiByte - v120 - - - Application - MultiByte - v120 - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - true - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - false - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebugDLL - Level3 - EditAndContinue - true - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - false - - - MachineX86 - - - - - X64 - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - true - - - libpng.lib;jpeg.lib;tiff.lib;%(AdditionalDependencies) - ..\..\..\extern\gnuwin32\lib;%(AdditionalLibraryDirectories) - false - - - MachineX64 - - - - - Full - Default - true - Neither - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - StreamingSIMDExtensions2 - true - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - Console - false - - - MachineX86 - - - - - X64 - - - Full - true - true - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - true - - - libpng.lib;jpeg.lib;tiff.lib;%(AdditionalDependencies) - ..\..\..\extern\gnuwin32\lib;%(AdditionalLibraryDirectories) - false - - - MachineX64 - - - - - - - - - - - - - - - - - - {c33787e3-5564-4834-9fe3-a9020455a669} - - - {f974f34b-af02-4c88-8e1e-85475094ea78} - - - {f143d180-d4c4-4037-b3de-be89a21c8d1d} - false - - - {4046f392-a18b-4c66-9639-3eabfff5d531} - false - - - {50c465fe-b308-42bc-894d-89484482af06} - false - - - - - - \ No newline at end of file diff --git a/project/vc12/nvddsinfo/nvddsinfo.vcxproj.filters b/project/vc12/nvddsinfo/nvddsinfo.vcxproj.filters deleted file mode 100644 index 8881e20..0000000 --- a/project/vc12/nvddsinfo/nvddsinfo.vcxproj.filters +++ /dev/null @@ -1,40 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - - - Source Files - - - - - Header Files - - - Header Files - - - - - Resource Files - - - - - Resource Files - - - \ No newline at end of file diff --git a/project/vc12/nvddsinfo/nvidia.ico b/project/vc12/nvddsinfo/nvidia.ico deleted file mode 100644 index 6aa721e..0000000 Binary files a/project/vc12/nvddsinfo/nvidia.ico and /dev/null differ diff --git a/project/vc12/nvddsinfo/resource.h b/project/vc12/nvddsinfo/resource.h deleted file mode 100644 index e765787..0000000 --- a/project/vc12/nvddsinfo/resource.h +++ /dev/null @@ -1,16 +0,0 @@ -//{{NO_DEPENDENCIES}} -// Microsoft Visual C++ generated include file. -// Used by nvcompress.rc -// -#define IDI_ICON1 101 - -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NEXT_RESOURCE_VALUE 102 -#define _APS_NEXT_COMMAND_VALUE 40001 -#define _APS_NEXT_CONTROL_VALUE 1000 -#define _APS_NEXT_SYMED_VALUE 101 -#endif -#endif diff --git a/project/vc12/nvdecompress/nvdecompress.rc b/project/vc12/nvdecompress/nvdecompress.rc deleted file mode 100644 index 95f6717..0000000 Binary files a/project/vc12/nvdecompress/nvdecompress.rc and /dev/null differ diff --git a/project/vc12/nvdecompress/nvdecompress.vcxproj b/project/vc12/nvdecompress/nvdecompress.vcxproj deleted file mode 100644 index 841be5c..0000000 --- a/project/vc12/nvdecompress/nvdecompress.vcxproj +++ /dev/null @@ -1,244 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {75A0527D-BFC9-49C3-B46B-CD1A901D5927} - nvdecompress - Win32Proj - - - - Application - MultiByte - true - v120 - - - Application - MultiByte - v120 - - - Application - MultiByte - true - v120 - - - Application - MultiByte - v120 - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - true - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - true - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - false - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - false - - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - EditAndContinue - true - - - %(AdditionalDependencies) - $(GnuWinDir)\lib; $(FreeImageDir);%(AdditionalLibraryDirectories) - true - Console - false - - - MachineX86 - - - - - X64 - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;NVDXT_SHARED;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - ProgramDatabase - true - - - ..\..\..\extern\gnuwin32\lib;%(AdditionalLibraryDirectories) - true - Console - false - - - MachineX64 - - - - - Full - Default - true - Neither - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - StreamingSIMDExtensions2 - - - Level3 - ProgramDatabase - true - - - %(AdditionalDependencies) - $(GnuWinDir)\lib; $(FreeImageDir);%(AdditionalLibraryDirectories) - false - Console - true - true - false - - - MachineX86 - - - - - X64 - - - Full - true - true - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;NVDXT_SHARED;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - - - Level3 - true - - - ..\..\..\extern\gnuwin32\lib;%(AdditionalLibraryDirectories) - Console - true - true - false - - - MachineX64 - - - - - - - - - - - - - - - true - - - - - {c33787e3-5564-4834-9fe3-a9020455a669} - - - {f974f34b-af02-4c88-8e1e-85475094ea78} - - - {f143d180-d4c4-4037-b3de-be89a21c8d1d} - false - - - {4046f392-a18b-4c66-9639-3eabfff5d531} - false - - - {50c465fe-b308-42bc-894d-89484482af06} - false - - - {1aeb7681-57d8-48ee-813d-5c41cc38b647} - false - false - false - true - false - - - - - - diff --git a/project/vc12/nvdecompress/nvdecompress.vcxproj.filters b/project/vc12/nvdecompress/nvdecompress.vcxproj.filters deleted file mode 100644 index 2d2e7c3..0000000 --- a/project/vc12/nvdecompress/nvdecompress.vcxproj.filters +++ /dev/null @@ -1,40 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - - - Source Files - - - - - Header Files - - - Header Files - - - - - Resource Files - - - - - Resource Files - - - \ No newline at end of file diff --git a/project/vc12/nvdecompress/nvidia.ico b/project/vc12/nvdecompress/nvidia.ico deleted file mode 100644 index 6aa721e..0000000 Binary files a/project/vc12/nvdecompress/nvidia.ico and /dev/null differ diff --git a/project/vc12/nvdecompress/resource.h b/project/vc12/nvdecompress/resource.h deleted file mode 100644 index e765787..0000000 --- a/project/vc12/nvdecompress/resource.h +++ /dev/null @@ -1,16 +0,0 @@ -//{{NO_DEPENDENCIES}} -// Microsoft Visual C++ generated include file. -// Used by nvcompress.rc -// -#define IDI_ICON1 101 - -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NEXT_RESOURCE_VALUE 102 -#define _APS_NEXT_COMMAND_VALUE 40001 -#define _APS_NEXT_CONTROL_VALUE 1000 -#define _APS_NEXT_SYMED_VALUE 101 -#endif -#endif diff --git a/project/vc12/nvimage/nvimage.vcxproj b/project/vc12/nvimage/nvimage.vcxproj deleted file mode 100644 index aca9cc5..0000000 --- a/project/vc12/nvimage/nvimage.vcxproj +++ /dev/null @@ -1,189 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {4046F392-A18B-4C66-9639-3EABFFF5D531} - nvimage - Win32Proj - - - - StaticLibrary - MultiByte - true - v120 - - - StaticLibrary - MultiByte - v120 - - - StaticLibrary - MultiByte - true - v120 - - - StaticLibrary - MultiByte - v120 - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;$(SolutionDir)\..\..\extern\stb;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_LIB;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - EditAndContinue - true - - - - - X64 - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;$(SolutionDir)\..\..\extern\stb;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_LIB;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - ProgramDatabase - true - - - - - Full - Default - true - Neither - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;$(SolutionDir)\..\..\extern\stb;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_LIB;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - StreamingSIMDExtensions2 - - - Level3 - ProgramDatabase - true - - - - - X64 - - - Full - true - true - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;$(SolutionDir)\..\..\extern\stb;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_LIB;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - - - Level3 - ProgramDatabase - true - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/project/vc12/nvimgdiff/nvidia.ico b/project/vc12/nvimgdiff/nvidia.ico deleted file mode 100644 index 6aa721e..0000000 Binary files a/project/vc12/nvimgdiff/nvidia.ico and /dev/null differ diff --git a/project/vc12/nvimgdiff/nvimgdiff.rc b/project/vc12/nvimgdiff/nvimgdiff.rc deleted file mode 100644 index 95f6717..0000000 Binary files a/project/vc12/nvimgdiff/nvimgdiff.rc and /dev/null differ diff --git a/project/vc12/nvimgdiff/nvimgdiff.vcxproj b/project/vc12/nvimgdiff/nvimgdiff.vcxproj deleted file mode 100644 index b61267c..0000000 --- a/project/vc12/nvimgdiff/nvimgdiff.vcxproj +++ /dev/null @@ -1,246 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {05A59E8B-EA70-4F22-89E8-E0927BA13064} - nvimgdiff - Win32Proj - - - - Application - MultiByte - true - v120 - - - Application - MultiByte - v120 - - - Application - MultiByte - true - v120 - - - Application - MultiByte - v120 - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - true - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - true - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - false - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - false - - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - EditAndContinue - true - - - %(AdditionalDependencies) - $(GnuWinDir)\lib; $(FreeImageDir);%(AdditionalLibraryDirectories) - true - Console - false - - - MachineX86 - - - - - X64 - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;NVDXT_SHARED;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - ProgramDatabase - true - - - ..\..\..\extern\gnuwin32\lib;%(AdditionalLibraryDirectories) - true - Console - false - - - MachineX64 - %(AdditionalDependencies) - - - - - Full - Default - true - Neither - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - StreamingSIMDExtensions2 - - - Level3 - ProgramDatabase - true - - - %(AdditionalDependencies) - $(GnuWinDir)\lib; $(FreeImageDir);%(AdditionalLibraryDirectories) - false - Console - true - true - false - - - MachineX86 - - - - - X64 - - - Full - true - true - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;NVDXT_SHARED;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - - - Level3 - true - - - ..\..\..\extern\gnuwin32\lib;%(AdditionalLibraryDirectories) - Console - true - true - false - - - MachineX64 - %(AdditionalDependencies) - - - - - - - - - - - - true - - - - - - - - {c33787e3-5564-4834-9fe3-a9020455a669} - - - {f974f34b-af02-4c88-8e1e-85475094ea78} - - - {f143d180-d4c4-4037-b3de-be89a21c8d1d} - false - - - {4046f392-a18b-4c66-9639-3eabfff5d531} - false - - - {50c465fe-b308-42bc-894d-89484482af06} - false - - - {1aeb7681-57d8-48ee-813d-5c41cc38b647} - false - false - false - true - false - - - - - - diff --git a/project/vc12/nvimgdiff/nvimgdiff.vcxproj.filters b/project/vc12/nvimgdiff/nvimgdiff.vcxproj.filters deleted file mode 100644 index b1ae45d..0000000 --- a/project/vc12/nvimgdiff/nvimgdiff.vcxproj.filters +++ /dev/null @@ -1,40 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - - - Source Files - - - - - Header Files - - - Header Files - - - - - Resource Files - - - - - Resource Files - - - \ No newline at end of file diff --git a/project/vc12/nvimgdiff/resource.h b/project/vc12/nvimgdiff/resource.h deleted file mode 100644 index e765787..0000000 --- a/project/vc12/nvimgdiff/resource.h +++ /dev/null @@ -1,16 +0,0 @@ -//{{NO_DEPENDENCIES}} -// Microsoft Visual C++ generated include file. -// Used by nvcompress.rc -// -#define IDI_ICON1 101 - -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NEXT_RESOURCE_VALUE 102 -#define _APS_NEXT_COMMAND_VALUE 40001 -#define _APS_NEXT_CONTROL_VALUE 1000 -#define _APS_NEXT_SYMED_VALUE 101 -#endif -#endif diff --git a/project/vc12/nvmath/nvmath.vcxproj b/project/vc12/nvmath/nvmath.vcxproj deleted file mode 100644 index 9ab7a6d..0000000 --- a/project/vc12/nvmath/nvmath.vcxproj +++ /dev/null @@ -1,190 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {50C465FE-B308-42BC-894D-89484482AF06} - nvmath - Win32Proj - - - - StaticLibrary - MultiByte - true - v120 - - - StaticLibrary - MultiByte - v120 - - - StaticLibrary - MultiByte - true - v120 - - - StaticLibrary - MultiByte - v120 - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_LIB;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - EditAndContinue - true - - - - - X64 - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_LIB;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - ProgramDatabase - true - - - - - Full - Default - true - Neither - true - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_LIB;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - StreamingSIMDExtensions2 - - - Level3 - ProgramDatabase - true - - - - - X64 - - - Full - true - true - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_LIB;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - - - Level3 - ProgramDatabase - true - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/project/vc12/nvthread/nvthread.vcxproj b/project/vc12/nvthread/nvthread.vcxproj deleted file mode 100644 index 08ec1c1..0000000 --- a/project/vc12/nvthread/nvthread.vcxproj +++ /dev/null @@ -1,167 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {4CFD4876-A026-46C2-AFCF-FB11346E815D} - nvthread - - - - StaticLibrary - true - MultiByte - v120 - - - StaticLibrary - true - MultiByte - v120 - - - StaticLibrary - false - true - MultiByte - v120 - - - StaticLibrary - false - true - MultiByte - v120 - - - - - - - - - - - - - - - - - - - $(Configuration)\$(Platform)\ - - - $(Configuration)\$(Platform)\ - - - $(Configuration)\$(Platform)\ - - - $(Configuration)\$(Platform)\ - - - $(Configuration)\$(Platform)\ - - - $(Configuration)\$(Platform)\ - - - $(Configuration)\$(Platform)\ - - - $(Configuration)\$(Platform)\ - - - - Level3 - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - true - false - - - true - - - - - Level3 - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - true - false - - - true - - - - - Level3 - MaxSpeed - true - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - true - - - true - true - true - - - - - Level3 - MaxSpeed - true - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - true - - - true - true - true - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/project/vc12/nvthread/nvthread.vcxproj.filters b/project/vc12/nvthread/nvthread.vcxproj.filters deleted file mode 100644 index cefe98d..0000000 --- a/project/vc12/nvthread/nvthread.vcxproj.filters +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/project/vc12/nvtt.props b/project/vc12/nvtt.props deleted file mode 100644 index d845180..0000000 --- a/project/vc12/nvtt.props +++ /dev/null @@ -1,9 +0,0 @@ - - - - - $(SolutionDir)..\..\src - $(SolutionDir)..\..\extern - $(ExternDir)\gnuwin32 - - diff --git a/project/vc12/nvtt.sln b/project/vc12/nvtt.sln deleted file mode 100644 index 77167a4..0000000 --- a/project/vc12/nvtt.sln +++ /dev/null @@ -1,381 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2013 -VisualStudioVersion = 12.0.31101.0 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{A08D9CB4-C9D8-46EF-A74D-0EAB11FE34C5}" - ProjectSection(SolutionItems) = preProject - bc6.psess = bc6.psess - nvconfig.h = nvconfig.h - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvtt", "nvtt\nvtt.vcxproj", "{1AEB7681-57D8-48EE-813D-5C41CC38B647}" - ProjectSection(ProjectDependencies) = postProject - {CE017322-01FC-4851-9C8B-64E9A8E26C38} = {CE017322-01FC-4851-9C8B-64E9A8E26C38} - {F974F34B-AF02-4C88-8E1E-85475094EA78} = {F974F34B-AF02-4C88-8E1E-85475094EA78} - {4CFD4876-A026-46C2-AFCF-FB11346E815D} = {4CFD4876-A026-46C2-AFCF-FB11346E815D} - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} = {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} - {4046F392-A18B-4C66-9639-3EABFFF5D531} = {4046F392-A18B-4C66-9639-3EABFFF5D531} - {C33787E3-5564-4834-9FE3-A9020455A669} = {C33787E3-5564-4834-9FE3-A9020455A669} - {50C465FE-B308-42BC-894D-89484482AF06} = {50C465FE-B308-42BC-894D-89484482AF06} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvcompress", "nvcompress\nvcompress.vcxproj", "{88079E38-83AA-4E8A-B18A-66A78D1B058B}" - ProjectSection(ProjectDependencies) = postProject - {4CFD4876-A026-46C2-AFCF-FB11346E815D} = {4CFD4876-A026-46C2-AFCF-FB11346E815D} - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} = {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} - {1AEB7681-57D8-48EE-813D-5C41CC38B647} = {1AEB7681-57D8-48EE-813D-5C41CC38B647} - {4046F392-A18B-4C66-9639-3EABFFF5D531} = {4046F392-A18B-4C66-9639-3EABFFF5D531} - {50C465FE-B308-42BC-894D-89484482AF06} = {50C465FE-B308-42BC-894D-89484482AF06} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvimage", "nvimage\nvimage.vcxproj", "{4046F392-A18B-4C66-9639-3EABFFF5D531}" - ProjectSection(ProjectDependencies) = postProject - {F974F34B-AF02-4C88-8E1E-85475094EA78} = {F974F34B-AF02-4C88-8E1E-85475094EA78} - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} = {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} - {C33787E3-5564-4834-9FE3-A9020455A669} = {C33787E3-5564-4834-9FE3-A9020455A669} - {50C465FE-B308-42BC-894D-89484482AF06} = {50C465FE-B308-42BC-894D-89484482AF06} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvcore", "nvcore\nvcore.vcxproj", "{F143D180-D4C4-4037-B3DE-BE89A21C8D1D}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvmath", "nvmath\nvmath.vcxproj", "{50C465FE-B308-42BC-894D-89484482AF06}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "squish", "squish\squish.vcxproj", "{CE017322-01FC-4851-9C8B-64E9A8E26C38}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvddsinfo", "nvddsinfo\nvddsinfo.vcxproj", "{841B73C5-C679-4EEF-A50A-7D6106642B49}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvdecompress", "nvdecompress\nvdecompress.vcxproj", "{75A0527D-BFC9-49C3-B46B-CD1A901D5927}" - ProjectSection(ProjectDependencies) = postProject - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} = {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} - {1AEB7681-57D8-48EE-813D-5C41CC38B647} = {1AEB7681-57D8-48EE-813D-5C41CC38B647} - {4046F392-A18B-4C66-9639-3EABFFF5D531} = {4046F392-A18B-4C66-9639-3EABFFF5D531} - {50C465FE-B308-42BC-894D-89484482AF06} = {50C465FE-B308-42BC-894D-89484482AF06} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvimgdiff", "nvimgdiff\nvimgdiff.vcxproj", "{05A59E8B-EA70-4F22-89E8-E0927BA13064}" - ProjectSection(ProjectDependencies) = postProject - {1AEB7681-57D8-48EE-813D-5C41CC38B647} = {1AEB7681-57D8-48EE-813D-5C41CC38B647} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvassemble", "nvassemble\nvassemble.vcxproj", "{3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}" - ProjectSection(ProjectDependencies) = postProject - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} = {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} - {4046F392-A18B-4C66-9639-3EABFFF5D531} = {4046F392-A18B-4C66-9639-3EABFFF5D531} - {50C465FE-B308-42BC-894D-89484482AF06} = {50C465FE-B308-42BC-894D-89484482AF06} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvzoom", "nvzoom\nvzoom.vcxproj", "{51999D3E-EF22-4BDD-965F-4201034D3DCE}" - ProjectSection(ProjectDependencies) = postProject - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} = {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} - {4046F392-A18B-4C66-9639-3EABFFF5D531} = {4046F392-A18B-4C66-9639-3EABFFF5D531} - {50C465FE-B308-42BC-894D-89484482AF06} = {50C465FE-B308-42BC-894D-89484482AF06} - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Nvidia.TextureTools", "Nvidia.TextureTools\Nvidia.TextureTools.csproj", "{CAB55C39-8FA9-4912-98D9-E52669C8911D}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvtt-testsuite", "testsuite\testsuite.vcxproj", "{317B694E-B5C1-42A6-956F-FC12B69175A6}" - ProjectSection(ProjectDependencies) = postProject - {1AEB7681-57D8-48EE-813D-5C41CC38B647} = {1AEB7681-57D8-48EE-813D-5C41CC38B647} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "imperativeapi", "imperativeapi\imperativeapi.vcxproj", "{7DCF280E-702B-49F3-84A7-AE7E146384D6}" - ProjectSection(ProjectDependencies) = postProject - {1AEB7681-57D8-48EE-813D-5C41CC38B647} = {1AEB7681-57D8-48EE-813D-5C41CC38B647} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bc6h", "bc6h\bc6h.vcxproj", "{C33787E3-5564-4834-9FE3-A9020455A669}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvthread", "nvthread\nvthread.vcxproj", "{4CFD4876-A026-46C2-AFCF-FB11346E815D}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bc7", "bc7\bc7.vcxproj", "{F974F34B-AF02-4C88-8E1E-85475094EA78}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - Debug-CUDA|Win32 = Debug-CUDA|Win32 - Debug-CUDA|x64 = Debug-CUDA|x64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - Release-CUDA|Win32 = Release-CUDA|Win32 - Release-CUDA|x64 = Release-CUDA|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug|Win32.ActiveCfg = Debug|Win32 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug|Win32.Build.0 = Debug|Win32 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug|x64.ActiveCfg = Debug|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug|x64.Build.0 = Debug|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug-CUDA|Win32.ActiveCfg = Debug-CUDA|Win32 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug-CUDA|Win32.Build.0 = Debug-CUDA|Win32 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug-CUDA|x64.ActiveCfg = Debug-CUDA|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug-CUDA|x64.Build.0 = Debug-CUDA|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release|Win32.ActiveCfg = Release|Win32 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release|Win32.Build.0 = Release|Win32 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release|x64.ActiveCfg = Release|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release|x64.Build.0 = Release|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release-CUDA|Win32.ActiveCfg = Release-CUDA|Win32 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release-CUDA|Win32.Build.0 = Release-CUDA|Win32 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release-CUDA|x64.ActiveCfg = Release-CUDA|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release-CUDA|x64.Build.0 = Release-CUDA|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug|Win32.ActiveCfg = Debug|Win32 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug|Win32.Build.0 = Debug|Win32 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug|x64.ActiveCfg = Debug|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug|x64.Build.0 = Debug|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug-CUDA|Win32.ActiveCfg = Debug-CUDA|Win32 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug-CUDA|Win32.Build.0 = Debug-CUDA|Win32 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug-CUDA|x64.ActiveCfg = Debug-CUDA|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug-CUDA|x64.Build.0 = Debug-CUDA|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release|Win32.ActiveCfg = Release|Win32 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release|Win32.Build.0 = Release|Win32 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release|x64.ActiveCfg = Release|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release|x64.Build.0 = Release|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release-CUDA|Win32.ActiveCfg = Release-CUDA|Win32 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release-CUDA|Win32.Build.0 = Release-CUDA|Win32 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release-CUDA|x64.ActiveCfg = Release-CUDA|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release-CUDA|x64.Build.0 = Release-CUDA|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug|Win32.ActiveCfg = Debug|Win32 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug|Win32.Build.0 = Debug|Win32 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug|x64.ActiveCfg = Debug|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug|x64.Build.0 = Debug|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug-CUDA|x64.Build.0 = Debug|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release|Win32.ActiveCfg = Release|Win32 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release|Win32.Build.0 = Release|Win32 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release|x64.ActiveCfg = Release|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release|x64.Build.0 = Release|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release-CUDA|Win32.Build.0 = Release|Win32 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release-CUDA|x64.ActiveCfg = Release|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release-CUDA|x64.Build.0 = Release|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug|Win32.ActiveCfg = Debug|Win32 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug|Win32.Build.0 = Debug|Win32 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug|x64.ActiveCfg = Debug|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug|x64.Build.0 = Debug|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug-CUDA|x64.Build.0 = Debug|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release|Win32.ActiveCfg = Release|Win32 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release|Win32.Build.0 = Release|Win32 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release|x64.ActiveCfg = Release|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release|x64.Build.0 = Release|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release-CUDA|Win32.Build.0 = Release|Win32 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release-CUDA|x64.ActiveCfg = Release|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release-CUDA|x64.Build.0 = Release|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug|Win32.ActiveCfg = Debug|Win32 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug|Win32.Build.0 = Debug|Win32 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug|x64.ActiveCfg = Debug|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug|x64.Build.0 = Debug|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug-CUDA|x64.Build.0 = Debug|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Release|Win32.ActiveCfg = Release|Win32 - {50C465FE-B308-42BC-894D-89484482AF06}.Release|Win32.Build.0 = Release|Win32 - {50C465FE-B308-42BC-894D-89484482AF06}.Release|x64.ActiveCfg = Release|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Release|x64.Build.0 = Release|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {50C465FE-B308-42BC-894D-89484482AF06}.Release-CUDA|Win32.Build.0 = Release|Win32 - {50C465FE-B308-42BC-894D-89484482AF06}.Release-CUDA|x64.ActiveCfg = Release|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Release-CUDA|x64.Build.0 = Release|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug|Win32.ActiveCfg = Debug|Win32 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug|Win32.Build.0 = Debug|Win32 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug|x64.ActiveCfg = Debug|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug|x64.Build.0 = Debug|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug-CUDA|x64.Build.0 = Debug|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release|Win32.ActiveCfg = Release|Win32 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release|Win32.Build.0 = Release|Win32 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release|x64.ActiveCfg = Release|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release|x64.Build.0 = Release|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release-CUDA|Win32.Build.0 = Release|Win32 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release-CUDA|x64.ActiveCfg = Release|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release-CUDA|x64.Build.0 = Release|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug|Win32.ActiveCfg = Debug|Win32 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug|Win32.Build.0 = Debug|Win32 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug|x64.ActiveCfg = Debug|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug|x64.Build.0 = Debug|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug-CUDA|x64.Build.0 = Debug|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release|Win32.ActiveCfg = Release|Win32 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release|Win32.Build.0 = Release|Win32 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release|x64.ActiveCfg = Release|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release|x64.Build.0 = Release|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release-CUDA|Win32.Build.0 = Release|Win32 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release-CUDA|x64.ActiveCfg = Release|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release-CUDA|x64.Build.0 = Release|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug|Win32.ActiveCfg = Debug|Win32 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug|Win32.Build.0 = Debug|Win32 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug|x64.ActiveCfg = Debug|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug|x64.Build.0 = Debug|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug-CUDA|x64.Build.0 = Debug|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release|Win32.ActiveCfg = Release|Win32 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release|Win32.Build.0 = Release|Win32 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release|x64.ActiveCfg = Release|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release|x64.Build.0 = Release|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release-CUDA|Win32.Build.0 = Release|Win32 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release-CUDA|x64.ActiveCfg = Release|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release-CUDA|x64.Build.0 = Release|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug|Win32.ActiveCfg = Debug|Win32 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug|Win32.Build.0 = Debug|Win32 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug|x64.ActiveCfg = Debug|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug|x64.Build.0 = Debug|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug-CUDA|x64.Build.0 = Debug|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release|Win32.ActiveCfg = Release|Win32 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release|Win32.Build.0 = Release|Win32 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release|x64.ActiveCfg = Release|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release|x64.Build.0 = Release|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release-CUDA|Win32.Build.0 = Release|Win32 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release-CUDA|x64.ActiveCfg = Release|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release-CUDA|x64.Build.0 = Release|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug|Win32.ActiveCfg = Debug|Win32 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug|Win32.Build.0 = Debug|Win32 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug|x64.ActiveCfg = Debug|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug|x64.Build.0 = Debug|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug-CUDA|x64.Build.0 = Debug|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release|Win32.ActiveCfg = Release|Win32 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release|Win32.Build.0 = Release|Win32 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release|x64.ActiveCfg = Release|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release|x64.Build.0 = Release|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release-CUDA|Win32.Build.0 = Release|Win32 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release-CUDA|x64.ActiveCfg = Release|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release-CUDA|x64.Build.0 = Release|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug|Win32.ActiveCfg = Debug|Win32 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug|Win32.Build.0 = Debug|Win32 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug|x64.ActiveCfg = Debug|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug|x64.Build.0 = Debug|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug-CUDA|x64.Build.0 = Debug|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release|Win32.ActiveCfg = Release|Win32 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release|Win32.Build.0 = Release|Win32 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release|x64.ActiveCfg = Release|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release|x64.Build.0 = Release|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release-CUDA|Win32.Build.0 = Release|Win32 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release-CUDA|x64.ActiveCfg = Release|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release-CUDA|x64.Build.0 = Release|x64 - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Debug|Win32.ActiveCfg = Debug|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Debug|Win32.Build.0 = Debug|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Debug|x64.ActiveCfg = Debug|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Debug|x64.Build.0 = Debug|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Debug-CUDA|Win32.ActiveCfg = Debug|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Debug-CUDA|Win32.Build.0 = Debug|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Debug-CUDA|x64.ActiveCfg = Debug|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Debug-CUDA|x64.Build.0 = Debug|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Release|Win32.ActiveCfg = Release|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Release|Win32.Build.0 = Release|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Release|x64.ActiveCfg = Release|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Release|x64.Build.0 = Release|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Release-CUDA|Win32.ActiveCfg = Release|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Release-CUDA|Win32.Build.0 = Release|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Release-CUDA|x64.ActiveCfg = Release|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Release-CUDA|x64.Build.0 = Release|Any CPU - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Debug|Win32.ActiveCfg = Debug|Win32 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Debug|Win32.Build.0 = Debug|Win32 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Debug|x64.ActiveCfg = Debug|x64 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Debug|x64.Build.0 = Debug|x64 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Debug-CUDA|Win32.ActiveCfg = Debug-CUDA|Win32 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Debug-CUDA|Win32.Build.0 = Debug-CUDA|Win32 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Debug-CUDA|x64.ActiveCfg = Debug-CUDA|x64 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Debug-CUDA|x64.Build.0 = Debug-CUDA|x64 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Release|Win32.ActiveCfg = Release|Win32 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Release|Win32.Build.0 = Release|Win32 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Release|x64.ActiveCfg = Release|x64 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Release|x64.Build.0 = Release|x64 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Release-CUDA|Win32.ActiveCfg = Release-CUDA|Win32 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Release-CUDA|Win32.Build.0 = Release-CUDA|Win32 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Release-CUDA|x64.ActiveCfg = Release-CUDA|x64 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Release-CUDA|x64.Build.0 = Release-CUDA|x64 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Debug|Win32.ActiveCfg = Debug|Win32 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Debug|Win32.Build.0 = Debug|Win32 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Debug|x64.ActiveCfg = Debug|x64 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Debug|x64.Build.0 = Debug|x64 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Debug-CUDA|x64.Build.0 = Debug|x64 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Release|Win32.ActiveCfg = Release|Win32 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Release|Win32.Build.0 = Release|Win32 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Release|x64.ActiveCfg = Release|x64 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Release|x64.Build.0 = Release|x64 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Release-CUDA|Win32.Build.0 = Release|Win32 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Release-CUDA|x64.ActiveCfg = Release|x64 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Release-CUDA|x64.Build.0 = Release|x64 - {C33787E3-5564-4834-9FE3-A9020455A669}.Debug|Win32.ActiveCfg = Debug|Win32 - {C33787E3-5564-4834-9FE3-A9020455A669}.Debug|Win32.Build.0 = Debug|Win32 - {C33787E3-5564-4834-9FE3-A9020455A669}.Debug|x64.ActiveCfg = Debug|x64 - {C33787E3-5564-4834-9FE3-A9020455A669}.Debug|x64.Build.0 = Debug|x64 - {C33787E3-5564-4834-9FE3-A9020455A669}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {C33787E3-5564-4834-9FE3-A9020455A669}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {C33787E3-5564-4834-9FE3-A9020455A669}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {C33787E3-5564-4834-9FE3-A9020455A669}.Debug-CUDA|x64.Build.0 = Debug|x64 - {C33787E3-5564-4834-9FE3-A9020455A669}.Release|Win32.ActiveCfg = Release|Win32 - {C33787E3-5564-4834-9FE3-A9020455A669}.Release|Win32.Build.0 = Release|Win32 - {C33787E3-5564-4834-9FE3-A9020455A669}.Release|x64.ActiveCfg = Release|x64 - {C33787E3-5564-4834-9FE3-A9020455A669}.Release|x64.Build.0 = Release|x64 - {C33787E3-5564-4834-9FE3-A9020455A669}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {C33787E3-5564-4834-9FE3-A9020455A669}.Release-CUDA|Win32.Build.0 = Release|Win32 - {C33787E3-5564-4834-9FE3-A9020455A669}.Release-CUDA|x64.ActiveCfg = Release|x64 - {C33787E3-5564-4834-9FE3-A9020455A669}.Release-CUDA|x64.Build.0 = Release|x64 - {4CFD4876-A026-46C2-AFCF-FB11346E815D}.Debug|Win32.ActiveCfg = Debug|Win32 - {4CFD4876-A026-46C2-AFCF-FB11346E815D}.Debug|Win32.Build.0 = Debug|Win32 - {4CFD4876-A026-46C2-AFCF-FB11346E815D}.Debug|x64.ActiveCfg = Debug|x64 - {4CFD4876-A026-46C2-AFCF-FB11346E815D}.Debug|x64.Build.0 = Debug|x64 - {4CFD4876-A026-46C2-AFCF-FB11346E815D}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {4CFD4876-A026-46C2-AFCF-FB11346E815D}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {4CFD4876-A026-46C2-AFCF-FB11346E815D}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {4CFD4876-A026-46C2-AFCF-FB11346E815D}.Debug-CUDA|x64.Build.0 = Debug|x64 - {4CFD4876-A026-46C2-AFCF-FB11346E815D}.Release|Win32.ActiveCfg = Release|Win32 - {4CFD4876-A026-46C2-AFCF-FB11346E815D}.Release|Win32.Build.0 = Release|Win32 - {4CFD4876-A026-46C2-AFCF-FB11346E815D}.Release|x64.ActiveCfg = Release|x64 - {4CFD4876-A026-46C2-AFCF-FB11346E815D}.Release|x64.Build.0 = Release|x64 - {4CFD4876-A026-46C2-AFCF-FB11346E815D}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {4CFD4876-A026-46C2-AFCF-FB11346E815D}.Release-CUDA|Win32.Build.0 = Release|Win32 - {4CFD4876-A026-46C2-AFCF-FB11346E815D}.Release-CUDA|x64.ActiveCfg = Release|x64 - {4CFD4876-A026-46C2-AFCF-FB11346E815D}.Release-CUDA|x64.Build.0 = Release|x64 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Debug|Win32.ActiveCfg = Debug|Win32 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Debug|Win32.Build.0 = Debug|Win32 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Debug|x64.ActiveCfg = Debug|x64 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Debug|x64.Build.0 = Debug|x64 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Debug-CUDA|x64.Build.0 = Debug|x64 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Release|Win32.ActiveCfg = Release|Win32 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Release|Win32.Build.0 = Release|Win32 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Release|x64.ActiveCfg = Release|x64 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Release|x64.Build.0 = Release|x64 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Release-CUDA|Win32.Build.0 = Release|Win32 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Release-CUDA|x64.ActiveCfg = Release|x64 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Release-CUDA|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/project/vc12/nvtt/nvtt.rc b/project/vc12/nvtt/nvtt.rc deleted file mode 100644 index 53ec9d1..0000000 --- a/project/vc12/nvtt/nvtt.rc +++ /dev/null @@ -1,102 +0,0 @@ -// Microsoft Visual C++ generated resource script. -// -#include "resource.h" - -#define APSTUDIO_READONLY_SYMBOLS -///////////////////////////////////////////////////////////////////////////// -// -// Generated from the TEXTINCLUDE 2 resource. -// -#include "windows.h" - -///////////////////////////////////////////////////////////////////////////// -#undef APSTUDIO_READONLY_SYMBOLS - -///////////////////////////////////////////////////////////////////////////// -// English (U.S.) resources - -#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) -#ifdef _WIN32 -LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US -#pragma code_page(1252) -#endif //_WIN32 - -#ifdef APSTUDIO_INVOKED -///////////////////////////////////////////////////////////////////////////// -// -// TEXTINCLUDE -// - -1 TEXTINCLUDE -BEGIN - "resource.h\0" -END - -2 TEXTINCLUDE -BEGIN - "#include ""afxres.h""\r\n" - "\0" -END - -3 TEXTINCLUDE -BEGIN - "\r\n" - "\0" -END - -#endif // APSTUDIO_INVOKED - - -///////////////////////////////////////////////////////////////////////////// -// -// Version -// - -VS_VERSION_INFO VERSIONINFO - FILEVERSION 2,1,0,0 - PRODUCTVERSION 2,1,0,0 - FILEFLAGSMASK 0x17L -#ifdef _DEBUG - FILEFLAGS 0x1L -#else - FILEFLAGS 0x0L -#endif - FILEOS 0x4L - FILETYPE 0x2L - FILESUBTYPE 0x0L -BEGIN - BLOCK "StringFileInfo" - BEGIN - BLOCK "040904b0" - BEGIN - VALUE "CompanyName", "NVIDIA Corporation" - VALUE "FileDescription", "NVIDIA Texture Tools Dynamic Link Library" - VALUE "FileVersion", "2, 1, 0, 0" - VALUE "InternalName", "nvtt" - VALUE "LegalCopyright", "Copyright (C) 2007" - VALUE "OriginalFilename", "nvtt.dll" - VALUE "ProductName", "NVIDIA Texture Tools Dynamic Link Library" - VALUE "ProductVersion", "2, 1, 0, 0" - END - END - BLOCK "VarFileInfo" - BEGIN - VALUE "Translation", 0x409, 1200 - END -END - -#endif // English (U.S.) resources -///////////////////////////////////////////////////////////////////////////// - - - -#ifndef APSTUDIO_INVOKED -///////////////////////////////////////////////////////////////////////////// -// -// Generated from the TEXTINCLUDE 3 resource. -// - - -///////////////////////////////////////////////////////////////////////////// -#endif // not APSTUDIO_INVOKED - diff --git a/project/vc12/nvtt/nvtt.vcxproj b/project/vc12/nvtt/nvtt.vcxproj deleted file mode 100644 index 8baf4c3..0000000 --- a/project/vc12/nvtt/nvtt.vcxproj +++ /dev/null @@ -1,535 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Debug-CUDA - Win32 - - - Debug-CUDA - x64 - - - Release - Win32 - - - Release - x64 - - - Release-CUDA - Win32 - - - Release-CUDA - x64 - - - - {1AEB7681-57D8-48EE-813D-5C41CC38B647} - nvtt - Win32Proj - - - - DynamicLibrary - NotSet - true - v120 - - - DynamicLibrary - NotSet - v120 - - - DynamicLibrary - MultiByte - true - v120 - - - DynamicLibrary - MultiByte - v120 - - - DynamicLibrary - v120 - - - DynamicLibrary - v120 - - - DynamicLibrary - MultiByte - true - v120 - - - DynamicLibrary - MultiByte - v120 - - - ImportGroup Label="ExtensionSettings"> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - true - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - true - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - false - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - false - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - true - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - true - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - false - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - false - - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;$(CUDA_INC_PATH);%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;NVTT_EXPORTS;NVTT_SHARED;HAVE_CUDA;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - ProgramDatabase - - - cudart.lib;%(AdditionalDependencies) - $(CUDA_PATH)\lib\Win32;%(AdditionalLibraryDirectories) - true - Windows - false - - - $(SolutionDir)\$(Configuration).$(Platform)\lib\$(ProjectName).lib - MachineX86 - - - Copying header files... - xcopy /y /f /i "$(SolutionDir)\..\..\src\nvtt\nvtt*.h" "$(SolutionDir)\$(Configuration).$(Platform)\include\nvtt\" - - - true - true - -D_DEBUG %(AdditionalOptions) - MDd - RTC1 - ptx - - - - - X64 - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;$(CUDA_INC_PATH);%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;NVTT_EXPORTS;NVTT_SHARED;HAVE_CUDA;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - ProgramDatabase - - - cudart.lib;%(AdditionalDependencies) - $(CUDA_PATH)\lib\x64;%(AdditionalLibraryDirectories) - true - Windows - false - - - $(SolutionDir)\$(Configuration).$(Platform)\lib\$(ProjectName).lib - MachineX64 - - - 64 - -D_DEBUG %(AdditionalOptions) - true - true - MDd - RTC1 - ptx - - - - - Full - Default - true - Neither - true - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;$(CUDA_INC_PATH);%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;NVTT_EXPORTS;NVTT_SHARED;HAVE_CUDA;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - StreamingSIMDExtensions2 - false - - - Level3 - ProgramDatabase - true - - - cudart.lib;%(AdditionalDependencies) - $(CUDA_PATH)\lib\Win32;%(AdditionalLibraryDirectories) - Windows - true - true - false - - - $(SolutionDir)\$(Configuration).$(Platform)\lib\$(ProjectName).lib - MachineX86 - true - - - Copying header files... - xcopy /y /f /i "$(SolutionDir)\..\..\src\nvtt\nvtt*.h" "$(SolutionDir)\$(Configuration).$(Platform)\include\nvtt\" - - - O2 - -DNDEBUG %(AdditionalOptions) - ptx - - - - - X64 - - - Full - true - true - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;$(CUDA_INC_PATH);%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;NVTT_EXPORTS;NVTT_SHARED;HAVE_CUDA;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - - - Level3 - ProgramDatabase - - - cudart.lib;%(AdditionalDependencies) - $(CUDA_PATH)\lib\x64;%(AdditionalLibraryDirectories) - Windows - true - true - false - - - $(SolutionDir)\$(Configuration).$(Platform)\lib\$(ProjectName).lib - MachineX64 - true - - - 64 - O2 - -DNDEBUG %(AdditionalOptions) - ptx - - - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;NVTT_EXPORTS;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - ProgramDatabase - true - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Windows - false - - - $(SolutionDir)\$(Configuration).$(Platform)\lib\$(ProjectName).lib - MachineX86 - - - Copying header files... - xcopy /y /f /i "$(SolutionDir)\..\..\src\nvtt\nvtt*.h" "$(SolutionDir)\$(Configuration).$(Platform)\include\nvtt\" - - - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_WINDOWS;_USRDLL;NVTT_EXPORTS;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebugDLL - Level3 - ProgramDatabase - true - - - $(CUDA_LIB_PATH)\..\lib64;%(AdditionalLibraryDirectories) - true - Windows - false - - - $(SolutionDir)\$(Configuration).$(Platform)\lib\$(ProjectName).lib - MachineX64 - %(AdditionalDependencies) - - - - - Full - true - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;NVTT_EXPORTS;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - - - Level3 - ProgramDatabase - true - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - Windows - true - true - false - - - $(SolutionDir)\$(Configuration).$(Platform)\lib\$(ProjectName).lib - MachineX86 - true - - - Copying header files... - xcopy /y /f /i "$(SolutionDir)\..\..\src\nvtt\nvtt*.h" "$(SolutionDir)\$(Configuration).$(Platform)\include\nvtt\" - - - - - true - true - true - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_WINDOWS;_USRDLL;NVTT_EXPORTS;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - true - - - $(CUDA_LIB_PATH)\..\lib64;%(AdditionalLibraryDirectories) - Windows - true - true - UseLinkTimeCodeGeneration - false - - - $(SolutionDir)\$(Configuration).$(Platform)\lib\$(ProjectName).lib - MachineX64 - %(AdditionalDependencies) - true - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Document - true - true - true - true - true - true - true - true - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {c33787e3-5564-4834-9fe3-a9020455a669} - false - - - {f974f34b-af02-4c88-8e1e-85475094ea78} - - - {f143d180-d4c4-4037-b3de-be89a21c8d1d} - false - - - {4046f392-a18b-4c66-9639-3eabfff5d531} - false - - - {50c465fe-b308-42bc-894d-89484482af06} - false - - - {4cfd4876-a026-46c2-afcf-fb11346e815d} - true - false - false - true - false - - - {ce017322-01fc-4851-9c8b-64e9a8e26c38} - false - - - - - compile - compile - compile - compile - true - true - true - true - - - - - \ No newline at end of file diff --git a/project/vc12/nvtt/nvtt.vcxproj.filters b/project/vc12/nvtt/nvtt.vcxproj.filters deleted file mode 100644 index 3df42ba..0000000 --- a/project/vc12/nvtt/nvtt.vcxproj.filters +++ /dev/null @@ -1,91 +0,0 @@ - - - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - {18fa5da9-6ed8-4990-880e-ab4234fe2114} - - - - - Resource Files - - - - - Resource Files - - - cuda - - - cuda - - - cuda - - - - - - - - - - - - - - - - - - - - - - - - - - cuda - - - cuda - - - - - - - - - - - - - - - - - - - - - - - - - - cuda - - - - - cuda - - - \ No newline at end of file diff --git a/project/vc12/nvtt/resource.h b/project/vc12/nvtt/resource.h deleted file mode 100644 index 4df7169..0000000 --- a/project/vc12/nvtt/resource.h +++ /dev/null @@ -1,14 +0,0 @@ -//{{NO_DEPENDENCIES}} -// Microsoft Visual C++ generated include file. -// Used by nvtt.rc - -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NEXT_RESOURCE_VALUE 101 -#define _APS_NEXT_COMMAND_VALUE 40001 -#define _APS_NEXT_CONTROL_VALUE 1001 -#define _APS_NEXT_SYMED_VALUE 101 -#endif -#endif diff --git a/project/vc12/nvzoom/nvidia.ico b/project/vc12/nvzoom/nvidia.ico deleted file mode 100644 index 6aa721e..0000000 Binary files a/project/vc12/nvzoom/nvidia.ico and /dev/null differ diff --git a/project/vc12/nvzoom/nvzoom.rc b/project/vc12/nvzoom/nvzoom.rc deleted file mode 100644 index 95f6717..0000000 Binary files a/project/vc12/nvzoom/nvzoom.rc and /dev/null differ diff --git a/project/vc12/nvzoom/nvzoom.vcxproj b/project/vc12/nvzoom/nvzoom.vcxproj deleted file mode 100644 index ebd8ce0..0000000 --- a/project/vc12/nvzoom/nvzoom.vcxproj +++ /dev/null @@ -1,229 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {51999D3E-EF22-4BDD-965F-4201034D3DCE} - nvzoom - Win32Proj - - - - Application - MultiByte - true - v120 - - - Application - MultiByte - v120 - - - Application - MultiByte - true - v120 - - - Application - MultiByte - v120 - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - true - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - true - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - false - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - false - - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - EditAndContinue - true - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - false - - - MachineX86 - - - - - X64 - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;NVDXT_SHARED;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - ProgramDatabase - true - - - ..\..\..\extern\gnuwin32\lib;%(AdditionalLibraryDirectories) - true - Console - false - - - MachineX64 - %(AdditionalDependencies) - - - - - Full - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;NVTT_SHARED;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - StreamingSIMDExtensions2 - - - Level3 - ProgramDatabase - true - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - false - Console - true - true - false - - - MachineX86 - - - - - X64 - - - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;NVDXT_SHARED;%(PreprocessorDefinitions) - MultiThreadedDLL - false - - - Level3 - true - - - ..\..\..\extern\gnuwin32\lib;%(AdditionalLibraryDirectories) - Console - true - true - false - - - MachineX64 - %(AdditionalDependencies) - - - - - - - - - - - - true - - - - - - - - {c33787e3-5564-4834-9fe3-a9020455a669} - - - {f974f34b-af02-4c88-8e1e-85475094ea78} - - - {f143d180-d4c4-4037-b3de-be89a21c8d1d} - false - - - {4046f392-a18b-4c66-9639-3eabfff5d531} - false - - - {50c465fe-b308-42bc-894d-89484482af06} - false - - - - - - \ No newline at end of file diff --git a/project/vc12/nvzoom/nvzoom.vcxproj.filters b/project/vc12/nvzoom/nvzoom.vcxproj.filters deleted file mode 100644 index fff52c9..0000000 --- a/project/vc12/nvzoom/nvzoom.vcxproj.filters +++ /dev/null @@ -1,40 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - - - Source Files - - - - - Header Files - - - Header Files - - - - - Resource Files - - - - - Resource Files - - - \ No newline at end of file diff --git a/project/vc12/nvzoom/resource.h b/project/vc12/nvzoom/resource.h deleted file mode 100644 index e765787..0000000 --- a/project/vc12/nvzoom/resource.h +++ /dev/null @@ -1,16 +0,0 @@ -//{{NO_DEPENDENCIES}} -// Microsoft Visual C++ generated include file. -// Used by nvcompress.rc -// -#define IDI_ICON1 101 - -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NEXT_RESOURCE_VALUE 102 -#define _APS_NEXT_COMMAND_VALUE 40001 -#define _APS_NEXT_CONTROL_VALUE 1000 -#define _APS_NEXT_SYMED_VALUE 101 -#endif -#endif diff --git a/project/vc12/squish/squish.vcxproj b/project/vc12/squish/squish.vcxproj deleted file mode 100644 index 64980d5..0000000 --- a/project/vc12/squish/squish.vcxproj +++ /dev/null @@ -1,189 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {CE017322-01FC-4851-9C8B-64E9A8E26C38} - squish - Win32Proj - - - - StaticLibrary - MultiByte - true - v120 - - - StaticLibrary - MultiByte - v120 - - - StaticLibrary - MultiByte - true - v120 - - - StaticLibrary - MultiByte - v120 - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - - - - Disabled - %(AdditionalIncludeDirectories) - WIN32;_DEBUG;_LIB;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - EditAndContinue - true - - - - - X64 - - - Disabled - %(AdditionalIncludeDirectories) - WIN32;_DEBUG;_LIB;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - ProgramDatabase - true - - - - - Full - Default - true - Neither - true - true - %(AdditionalIncludeDirectories) - WIN32;NDEBUG;_LIB;__SSE2__;__SSE__;__MMX__;SQUISH_USE_SSE = 2;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - StreamingSIMDExtensions2 - - - Level3 - ProgramDatabase - true - - - - - X64 - - - Full - true - true - true - %(AdditionalIncludeDirectories) - WIN32;NDEBUG;_LIB;__SSE2__;__SSE__;__MMX__;%(PreprocessorDefinitions) - true - MultiThreadedDLL - false - - - Level3 - ProgramDatabase - true - - - - - - - - - - - - - - - - - - - - - - {f143d180-d4c4-4037-b3de-be89a21c8d1d} - false - - - {4046f392-a18b-4c66-9639-3eabfff5d531} - false - - - {50c465fe-b308-42bc-894d-89484482af06} - false - - - - - - \ No newline at end of file diff --git a/project/vc12/testsuite/testsuite.vcxproj b/project/vc12/testsuite/testsuite.vcxproj deleted file mode 100644 index dbe25ff..0000000 --- a/project/vc12/testsuite/testsuite.vcxproj +++ /dev/null @@ -1,371 +0,0 @@ - - - - - Debug-CUDA - Win32 - - - Debug-CUDA - x64 - - - Debug - Win32 - - - Debug - x64 - - - Release-CUDA - Win32 - - - Release-CUDA - x64 - - - Release - Win32 - - - Release - x64 - - - - nvtt-testsuite - {317B694E-B5C1-42A6-956F-FC12B69175A6} - stress - Win32Proj - - - - Application - Unicode - true - v120 - - - Application - Unicode - true - v120 - - - Application - Unicode - true - v120 - - - Application - Unicode - true - v120 - - - Application - Unicode - v120 - - - Application - Unicode - v120 - - - Application - Unicode - v120 - - - Application - Unicode - v120 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - true - true - true - true - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(SolutionDir)\$(Configuration).$(Platform)\bin\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - $(Configuration)\$(Platform)\ - false - false - false - false - - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - false - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - EditAndContinue - true - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - false - - - MachineX86 - - - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - EditAndContinue - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - false - - - MachineX86 - - - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - ProgramDatabase - true - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - false - - - - - - - Disabled - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - EnableFastChecks - MultiThreadedDebugDLL - - - Level3 - ProgramDatabase - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - false - - - - - - - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - MultiThreadedDLL - StreamingSIMDExtensions2 - - - Level3 - - - true - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - MachineX86 - - - - - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - MultiThreadedDLL - StreamingSIMDExtensions2 - - - Level3 - - - true - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - MachineX86 - - - - - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - MultiThreadedDLL - StreamingSIMDExtensions2 - - - Level3 - - - true - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - - - - - $(SolutionDir);$(SolutionDir)\..\..\src;$(SolutionDir)\..\..\extern\poshlib;%(AdditionalIncludeDirectories) - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - MultiThreadedDLL - StreamingSIMDExtensions2 - - - Level3 - - - true - - - %(AdditionalDependencies) - %(AdditionalLibraryDirectories) - true - Console - true - true - false - - - - - - - - - - {f143d180-d4c4-4037-b3de-be89a21c8d1d} - false - - - {4046f392-a18b-4c66-9639-3eabfff5d531} - false - - - {1aeb7681-57d8-48ee-813d-5c41cc38b647} - false - - - - - - \ No newline at end of file diff --git a/project/vc8/.ignore b/project/vc8/.ignore deleted file mode 100644 index b351d81..0000000 --- a/project/vc8/.ignore +++ /dev/null @@ -1,13 +0,0 @@ -nvtt.suo -nvtt.ncb -release.win32 -debug.win32 -release.x64 -debug.x64 -release (no cuda).win32 -debug (no cuda).win32 -release (no cuda).x64 -debug (no cuda).x64 -Release -Debug -*.icastano.user diff --git a/project/vc8/Nvidia.TextureTools/Nvidia.TextureTools.csproj b/project/vc8/Nvidia.TextureTools/Nvidia.TextureTools.csproj deleted file mode 100644 index 5c5bf25..0000000 --- a/project/vc8/Nvidia.TextureTools/Nvidia.TextureTools.csproj +++ /dev/null @@ -1,47 +0,0 @@ - - - Debug - AnyCPU - 8.0.50727 - 2.0 - {CAB55C39-8FA9-4912-98D9-E52669C8911D} - Library - Properties - Nvidia.TextureTools - Nvidia.TextureTools - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - - - - - - - - - - \ No newline at end of file diff --git a/project/vc8/Nvidia.TextureTools/Properties/AssemblyInfo.cs b/project/vc8/Nvidia.TextureTools/Properties/AssemblyInfo.cs deleted file mode 100644 index ecd652e..0000000 --- a/project/vc8/Nvidia.TextureTools/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,35 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("Nvidia.TextureTools")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("NVIDIA Corporation")] -[assembly: AssemblyProduct("Nvidia.TextureTools")] -[assembly: AssemblyCopyright("Copyright © NVIDIA 2008")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("5fa03fb3-b7a3-4ba8-90e7-545929731356")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/project/vc8/Nvidia.TextureTools/TextureTools.cs b/project/vc8/Nvidia.TextureTools/TextureTools.cs deleted file mode 100644 index 9b57249..0000000 --- a/project/vc8/Nvidia.TextureTools/TextureTools.cs +++ /dev/null @@ -1,526 +0,0 @@ -using System; -using System.Security; -using System.Runtime.InteropServices; - -namespace Nvidia.TextureTools -{ - #region Enums - - #region public enum Format - /// - /// Compression format. - /// - public enum Format - { - // No compression. - RGB, - RGBA = RGB, - - // DX9 formats. - DXT1, - DXT1a, - DXT3, - DXT5, - DXT5n, - - // DX10 formats. - BC1 = DXT1, - BC1a = DXT1a, - BC2 = DXT3, - BC3 = DXT5, - BC3n = DXT5n, - BC4, - BC5, - } - #endregion - - #region public enum Quality - /// - /// Quality modes. - /// - public enum Quality - { - Fastest, - Normal, - Production, - Highest, - } - #endregion - - #region public enum WrapMode - /// - /// Wrap modes. - /// - public enum WrapMode - { - Clamp, - Repeat, - Mirror, - } - #endregion - - #region public enum TextureType - /// - /// Texture types. - /// - public enum TextureType - { - Texture2D, - TextureCube, - } - #endregion - - #region public enum InputFormat - /// - /// Input formats. - /// - public enum InputFormat - { - BGRA_8UB - } - #endregion - - #region public enum MipmapFilter - /// - /// Mipmap downsampling filters. - /// - public enum MipmapFilter - { - Box, - Triangle, - Kaiser - } - #endregion - - #region public enum ColorTransform - /// - /// Color transformation. - /// - public enum ColorTransform - { - None, - Linear - } - #endregion - - #region public enum RoundMode - /// - /// Extents rounding mode. - /// - public enum RoundMode - { - None, - ToNextPowerOfTwo, - ToNearestPowerOfTwo, - ToPreviousPowerOfTwo - } - #endregion - - #region public enum AlphaMode - /// - /// Alpha mode. - /// - public enum AlphaMode - { - None, - Transparency, - Premultiplied - } - #endregion - - #region public enum Error - /// - /// Error codes. - /// - public enum Error - { - InvalidInput, - UserInterruption, - UnsupportedFeature, - CudaError, - Unknown, - FileOpen, - FileWrite, - } - #endregion - - #endregion - - #region public class InputOptions - /// - /// Input options. - /// - public class InputOptions - { - #region Bindings - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static IntPtr nvttCreateInputOptions(); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttDestroyInputOptions(IntPtr inputOptions); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsTextureLayout(IntPtr inputOptions, TextureType type, int w, int h, int d); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttResetInputOptionsTextureLayout(IntPtr inputOptions); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static bool nvttSetInputOptionsMipmapData(IntPtr inputOptions, IntPtr data, int w, int h, int d, int face, int mipmap); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsFormat(IntPtr inputOptions, InputFormat format); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsAlphaMode(IntPtr inputOptions, AlphaMode alphaMode); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsGamma(IntPtr inputOptions, float inputGamma, float outputGamma); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsWrapMode(IntPtr inputOptions, WrapMode mode); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsMipmapFilter(IntPtr inputOptions, MipmapFilter filter); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsMipmapGeneration(IntPtr inputOptions, bool generateMipmaps, int maxLevel); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsKaiserParameters(IntPtr inputOptions, float width, float alpha, float stretch); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsNormalMap(IntPtr inputOptions, bool b); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsConvertToNormalMap(IntPtr inputOptions, bool convert); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsHeightEvaluation(IntPtr inputOptions, float redScale, float greenScale, float blueScale, float alphaScale); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsNormalFilter(IntPtr inputOptions, float small, float medium, float big, float large); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsNormalizeMipmaps(IntPtr inputOptions, bool b); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsColorTransform(IntPtr inputOptions, ColorTransform t); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsLinearTransfrom(IntPtr inputOptions, int channel, float w0, float w1, float w2, float w3); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsMaxExtents(IntPtr inputOptions, int d); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsRoundMode(IntPtr inputOptions, RoundMode mode); - #endregion - - internal IntPtr options; - - public InputOptions() - { - options = nvttCreateInputOptions(); - } - ~InputOptions() - { - nvttDestroyInputOptions(options); - } - - public void SetTextureLayout(TextureType type, int w, int h, int d) - { - nvttSetInputOptionsTextureLayout(options, type, w, h, d); - } - public void ResetTextureLayout() - { - nvttResetInputOptionsTextureLayout(options); - } - - public void SetMipmapData(IntPtr data, int width, int height, int depth, int face, int mipmap) - { - nvttSetInputOptionsMipmapData(options, data, width, height, depth, face, mipmap); - } - - public void SetFormat(InputFormat format) - { - nvttSetInputOptionsFormat(options, format); - } - - public void SetAlphaMode(AlphaMode alphaMode) - { - nvttSetInputOptionsAlphaMode(options, alphaMode); - } - - public void SetGamma(float inputGamma, float outputGamma) - { - nvttSetInputOptionsGamma(options, inputGamma, outputGamma); - } - - public void SetWrapMode(WrapMode wrapMode) - { - nvttSetInputOptionsWrapMode(options, wrapMode); - } - - public void SetMipmapFilter(MipmapFilter filter) - { - nvttSetInputOptionsMipmapFilter(options, filter); - } - - public void SetMipmapGeneration(bool enabled) - { - nvttSetInputOptionsMipmapGeneration(options, enabled, -1); - } - - public void SetMipmapGeneration(bool enabled, int maxLevel) - { - nvttSetInputOptionsMipmapGeneration(options, enabled, maxLevel); - } - - public void SetKaiserParameters(float width, float alpha, float stretch) - { - nvttSetInputOptionsKaiserParameters(options, width, alpha, stretch); - } - - public void SetNormalMap(bool b) - { - nvttSetInputOptionsNormalMap(options, b); - } - - public void SetConvertToNormalMap(bool convert) - { - nvttSetInputOptionsConvertToNormalMap(options, convert); - } - - public void SetHeightEvaluation(float redScale, float greenScale, float blueScale, float alphaScale) - { - nvttSetInputOptionsHeightEvaluation(options, redScale, greenScale, blueScale, alphaScale); - } - - public void SetNormalFilter(float small, float medium, float big, float large) - { - nvttSetInputOptionsNormalFilter(options, small, medium, big, large); - } - - public void SetNormalizeMipmaps(bool b) - { - nvttSetInputOptionsNormalizeMipmaps(options, b); - } - - public void SetColorTransform(ColorTransform t) - { - nvttSetInputOptionsColorTransform(options, t); - } - - public void SetLinearTransfrom(int channel, float w0, float w1, float w2, float w3) - { - nvttSetInputOptionsLinearTransfrom(options, channel, w0, w1, w2, w3); - } - - public void SetMaxExtents(int dim) - { - nvttSetInputOptionsMaxExtents(options, dim); - } - - public void SetRoundMode(RoundMode mode) - { - nvttSetInputOptionsRoundMode(options, mode); - } - } - #endregion - - #region public class CompressionOptions - /// - /// Compression options. - /// - public class CompressionOptions - { - #region Bindings - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static IntPtr nvttCreateCompressionOptions(); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttDestroyCompressionOptions(IntPtr compressionOptions); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetCompressionOptionsFormat(IntPtr compressionOptions, Format format); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetCompressionOptionsQuality(IntPtr compressionOptions, Quality quality); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetCompressionOptionsColorWeights(IntPtr compressionOptions, float red, float green, float blue, float alpha); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetCompressionOptionsPixelFormat(IntPtr compressionOptions, uint bitcount, uint rmask, uint gmask, uint bmask, uint amask); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetCompressionOptionsQuantization(IntPtr compressionOptions, bool colorDithering, bool alphaDithering, bool binaryAlpha, int alphaThreshold); - #endregion - - internal IntPtr options; - - public CompressionOptions() - { - options = nvttCreateCompressionOptions(); - } - ~CompressionOptions() - { - nvttDestroyCompressionOptions(options); - } - - public void SetFormat(Format format) - { - nvttSetCompressionOptionsFormat(options, format); - } - - public void SetQuality(Quality quality) - { - nvttSetCompressionOptionsQuality(options, quality); - } - - public void SetColorWeights(float red, float green, float blue) - { - nvttSetCompressionOptionsColorWeights(options, red, green, blue, 1.0f); - } - - public void SetColorWeights(float red, float green, float blue, float alpha) - { - nvttSetCompressionOptionsColorWeights(options, red, green, blue, alpha); - } - - public void SetPixelFormat(uint bitcount, uint rmask, uint gmask, uint bmask, uint amask) - { - nvttSetCompressionOptionsPixelFormat(options, bitcount, rmask, gmask, bmask, amask); - } - - public void SetQuantization(bool colorDithering, bool alphaDithering, bool binaryAlpha) - { - nvttSetCompressionOptionsQuantization(options, colorDithering, alphaDithering, binaryAlpha, 127); - } - - public void SetQuantization(bool colorDithering, bool alphaDithering, bool binaryAlpha, int alphaThreshold) - { - nvttSetCompressionOptionsQuantization(options, colorDithering, alphaDithering, binaryAlpha, alphaThreshold); - } - } - #endregion - - #region public class OutputOptions - /// - /// Output options. - /// - public class OutputOptions - { - #region Delegates - public delegate void ErrorHandler(Error error); - private delegate void WriteDataDelegate(IntPtr data, int size); - private delegate void ImageDelegate(int size, int width, int height, int depth, int face, int miplevel); - #endregion - - #region Bindings - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static IntPtr nvttCreateOutputOptions(); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttDestroyOutputOptions(IntPtr outputOptions); - - [DllImport("nvtt", CharSet = CharSet.Ansi), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetOutputOptionsFileName(IntPtr outputOptions, string fileName); - - //[DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - //private extern static void nvttSetOutputOptionsErrorHandler(IntPtr outputOptions, ErrorHandler errorHandler); - - private void ErrorCallback(Error error) - { - if (Error != null) Error(error); - } - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetOutputOptionsOutputHeader(IntPtr outputOptions, bool b); - - //[DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - //private extern static void nvttSetOutputOptionsOutputHandler(IntPtr outputOptions, WriteDataDelegate writeData, ImageDelegate image); - - #endregion - - internal IntPtr options; - - public OutputOptions() - { - options = nvttCreateOutputOptions(); - //nvttSetOutputOptionsErrorHandler(options, new ErrorHandler(ErrorCallback)); - } - ~OutputOptions() - { - nvttDestroyOutputOptions(options); - } - - public void SetFileName(string fileName) - { - nvttSetOutputOptionsFileName(options, fileName); - } - - public event ErrorHandler Error; - - public void SetOutputHeader(bool b) - { - nvttSetOutputOptionsOutputHeader(options, b); - } - - // @@ Add OutputHandler interface. - } - #endregion - - #region public static class Compressor - public class Compressor - { - #region Bindings - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static IntPtr nvttCreateCompressor(); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttDestroyCompressor(IntPtr compressor); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static bool nvttCompress(IntPtr compressor, IntPtr inputOptions, IntPtr compressionOptions, IntPtr outputOptions); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static int nvttEstimateSize(IntPtr compressor, IntPtr inputOptions, IntPtr compressionOptions); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private static extern IntPtr nvttErrorString(Error error); - - #endregion - - internal IntPtr compressor; - - public Compressor() - { - compressor = nvttCreateCompressor(); - } - - ~Compressor() - { - nvttDestroyCompressor(compressor); - } - - public bool Compress(InputOptions input, CompressionOptions compression, OutputOptions output) - { - return nvttCompress(compressor, input.options, compression.options, output.options); - } - - public int EstimateSize(InputOptions input, CompressionOptions compression) - { - return nvttEstimateSize(compressor, input.options, compression.options); - } - - public static string ErrorString(Error error) - { - return Marshal.PtrToStringAnsi(nvttErrorString(error)); - } - - } - #endregion - -} // Nvidia.TextureTools namespace diff --git a/project/vc8/PhotoshopExporter/PhotoshopExporter.cpp b/project/vc8/PhotoshopExporter/PhotoshopExporter.cpp deleted file mode 100644 index 30c12c6..0000000 --- a/project/vc8/PhotoshopExporter/PhotoshopExporter.cpp +++ /dev/null @@ -1,76 +0,0 @@ - -#include "PhotoshopExporter.h" - -#include - -SPBasicSuite * sSPBasic = NULL; - - - -void InitGlobals (Ptr globalPtr) -{ - Globals * globals = (Globals *)globalPtr; - - // Set default values. - globals->queryForParameters = true; -} - - - - -DLLExport MACPASCAL void PluginMain (const short selector, - void *exportParamBlock, - long *data, - short *result) -{ - if (selector == exportSelectorAbout) - { - sSPBasic = ((AboutRecord*)exportParamBlock)->sSPBasic; - //DoAbout((AboutRecordPtr)exportParamBlock); - } - else - { - sSPBasic = ((ExportRecordPtr)exportParamBlock)->sSPBasic; - - // Allocate and initialize globals. - Ptr globalPtr = AllocateGlobals ((uint32)result, (uint32)exportParamBlock, ((ExportRecordPtr)exportParamBlock)->handleProcs, sizeof(Globals), data, InitGlobals); - - if (globalPtr == NULL) - { - *result = memFullErr; - return; - } - - // Get our "globals" variable assigned as a Global Pointer struct with the - // data we've returned: - Globals * globals = (Globals *)globalPtr; - - - //----------------------------------------------------------------------- - // (3) Dispatch selector. - //----------------------------------------------------------------------- - - switch (selector) - { - case exportSelectorPrepare: - // DoPrepare(globals); - break; - case exportSelectorStart: - // DoStart(globals); - break; - case exportSelectorContinue: - // DoContinue(globals); - break; - case exportSelectorFinish: - // DoFinish(globals); - break; - } - - // unlock handle pointing to parameter block and data so it can move - // if memory gets shuffled: - if ((Handle)*data != NULL) - { - PIUnlockHandle((Handle)*data); - } - } -} diff --git a/project/vc8/PhotoshopExporter/PhotoshopExporter.h b/project/vc8/PhotoshopExporter/PhotoshopExporter.h deleted file mode 100644 index 669a6fa..0000000 --- a/project/vc8/PhotoshopExporter/PhotoshopExporter.h +++ /dev/null @@ -1,27 +0,0 @@ - -#ifndef NV_PHOTOSHOP_EXPORTER_H -#define NV_PHOTOSHOP_EXPORTER_H - -#include // Export Photoshop header file. -#include // SDK Utility library. - -// Photoshop crazyness: -//#define gResult (*(globals->result)) -#define gStuff (globals->exportParamBlock) - - -// This is our structure that we use to pass globals between routines: -struct Globals -{ - short * result; // Must always be first in Globals. - ExportRecord * exportParamBlock; // Must always be second in Globals. - - Boolean queryForParameters; - - // ... - -}; - - - -#endif // NV_PHOTOSHOP_EXPORTER_H diff --git a/project/vc8/PhotoshopExporter/PhotoshopExporter.vcproj b/project/vc8/PhotoshopExporter/PhotoshopExporter.vcproj deleted file mode 100644 index fc911a6..0000000 --- a/project/vc8/PhotoshopExporter/PhotoshopExporter.vcproj +++ /dev/null @@ -1,236 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/project/vc8/nvassemble/nvassemble.rc b/project/vc8/nvassemble/nvassemble.rc deleted file mode 100644 index 842ded1..0000000 Binary files a/project/vc8/nvassemble/nvassemble.rc and /dev/null differ diff --git a/project/vc8/nvassemble/nvassemble.vcproj b/project/vc8/nvassemble/nvassemble.vcproj deleted file mode 100644 index 6b5bc3b..0000000 --- a/project/vc8/nvassemble/nvassemble.vcproj +++ /dev/null @@ -1,356 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/project/vc8/nvassemble/nvidia.ico b/project/vc8/nvassemble/nvidia.ico deleted file mode 100644 index 6aa721e..0000000 Binary files a/project/vc8/nvassemble/nvidia.ico and /dev/null differ diff --git a/project/vc8/nvassemble/resource.h b/project/vc8/nvassemble/resource.h deleted file mode 100644 index e765787..0000000 --- a/project/vc8/nvassemble/resource.h +++ /dev/null @@ -1,16 +0,0 @@ -//{{NO_DEPENDENCIES}} -// Microsoft Visual C++ generated include file. -// Used by nvcompress.rc -// -#define IDI_ICON1 101 - -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NEXT_RESOURCE_VALUE 102 -#define _APS_NEXT_COMMAND_VALUE 40001 -#define _APS_NEXT_CONTROL_VALUE 1000 -#define _APS_NEXT_SYMED_VALUE 101 -#endif -#endif diff --git a/project/vc8/nvcompress/nvcompress.rc b/project/vc8/nvcompress/nvcompress.rc deleted file mode 100644 index 842ded1..0000000 Binary files a/project/vc8/nvcompress/nvcompress.rc and /dev/null differ diff --git a/project/vc8/nvcompress/nvcompress.vcproj b/project/vc8/nvcompress/nvcompress.vcproj deleted file mode 100644 index 90c807a..0000000 --- a/project/vc8/nvcompress/nvcompress.vcproj +++ /dev/null @@ -1,696 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/project/vc8/nvcompress/nvidia.ico b/project/vc8/nvcompress/nvidia.ico deleted file mode 100644 index 6aa721e..0000000 Binary files a/project/vc8/nvcompress/nvidia.ico and /dev/null differ diff --git a/project/vc8/nvcompress/resource.h b/project/vc8/nvcompress/resource.h deleted file mode 100644 index e765787..0000000 --- a/project/vc8/nvcompress/resource.h +++ /dev/null @@ -1,16 +0,0 @@ -//{{NO_DEPENDENCIES}} -// Microsoft Visual C++ generated include file. -// Used by nvcompress.rc -// -#define IDI_ICON1 101 - -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NEXT_RESOURCE_VALUE 102 -#define _APS_NEXT_COMMAND_VALUE 40001 -#define _APS_NEXT_CONTROL_VALUE 1000 -#define _APS_NEXT_SYMED_VALUE 101 -#endif -#endif diff --git a/project/vc8/nvconfig.h b/project/vc8/nvconfig.h deleted file mode 100644 index 68948a7..0000000 --- a/project/vc8/nvconfig.h +++ /dev/null @@ -1,23 +0,0 @@ -#ifndef NV_CONFIG -#define NV_CONFIG - -//#cmakedefine HAVE_UNISTD_H -#define HAVE_STDARG_H -//#cmakedefine HAVE_SIGNAL_H -//#cmakedefine HAVE_EXECINFO_H -#define HAVE_MALLOC_H - -#if !defined(_M_X64) -//#define HAVE_PNG -//#define HAVE_JPEG -//#define HAVE_TIFF -#define HAVE_FREEIMAGE -#endif - -//#define HAVE_ATITC -//#define HAVE_D3DX -//#define HAVE_SQUISH -//#define HAVE_STB - - -#endif // NV_CONFIG diff --git a/project/vc8/nvcore/.ignore b/project/vc8/nvcore/.ignore deleted file mode 100644 index 66b0249..0000000 --- a/project/vc8/nvcore/.ignore +++ /dev/null @@ -1,3 +0,0 @@ -Debug -Release -*.icastano.user diff --git a/project/vc8/nvcore/nvcore.vcproj b/project/vc8/nvcore/nvcore.vcproj deleted file mode 100644 index 84274fc..0000000 --- a/project/vc8/nvcore/nvcore.vcproj +++ /dev/null @@ -1,394 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/project/vc8/nvddsinfo/nvddsinfo.rc b/project/vc8/nvddsinfo/nvddsinfo.rc deleted file mode 100644 index 842ded1..0000000 Binary files a/project/vc8/nvddsinfo/nvddsinfo.rc and /dev/null differ diff --git a/project/vc8/nvddsinfo/nvddsinfo.vcproj b/project/vc8/nvddsinfo/nvddsinfo.vcproj deleted file mode 100644 index 32fc39c..0000000 --- a/project/vc8/nvddsinfo/nvddsinfo.vcproj +++ /dev/null @@ -1,355 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/project/vc8/nvddsinfo/nvidia.ico b/project/vc8/nvddsinfo/nvidia.ico deleted file mode 100644 index 6aa721e..0000000 Binary files a/project/vc8/nvddsinfo/nvidia.ico and /dev/null differ diff --git a/project/vc8/nvddsinfo/resource.h b/project/vc8/nvddsinfo/resource.h deleted file mode 100644 index e765787..0000000 --- a/project/vc8/nvddsinfo/resource.h +++ /dev/null @@ -1,16 +0,0 @@ -//{{NO_DEPENDENCIES}} -// Microsoft Visual C++ generated include file. -// Used by nvcompress.rc -// -#define IDI_ICON1 101 - -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NEXT_RESOURCE_VALUE 102 -#define _APS_NEXT_COMMAND_VALUE 40001 -#define _APS_NEXT_CONTROL_VALUE 1000 -#define _APS_NEXT_SYMED_VALUE 101 -#endif -#endif diff --git a/project/vc8/nvdecompress/nvdecompress.rc b/project/vc8/nvdecompress/nvdecompress.rc deleted file mode 100644 index 842ded1..0000000 Binary files a/project/vc8/nvdecompress/nvdecompress.rc and /dev/null differ diff --git a/project/vc8/nvdecompress/nvdecompress.vcproj b/project/vc8/nvdecompress/nvdecompress.vcproj deleted file mode 100644 index b02aa7f..0000000 --- a/project/vc8/nvdecompress/nvdecompress.vcproj +++ /dev/null @@ -1,385 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/project/vc8/nvdecompress/nvidia.ico b/project/vc8/nvdecompress/nvidia.ico deleted file mode 100644 index 6aa721e..0000000 Binary files a/project/vc8/nvdecompress/nvidia.ico and /dev/null differ diff --git a/project/vc8/nvdecompress/resource.h b/project/vc8/nvdecompress/resource.h deleted file mode 100644 index e765787..0000000 --- a/project/vc8/nvdecompress/resource.h +++ /dev/null @@ -1,16 +0,0 @@ -//{{NO_DEPENDENCIES}} -// Microsoft Visual C++ generated include file. -// Used by nvcompress.rc -// -#define IDI_ICON1 101 - -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NEXT_RESOURCE_VALUE 102 -#define _APS_NEXT_COMMAND_VALUE 40001 -#define _APS_NEXT_CONTROL_VALUE 1000 -#define _APS_NEXT_SYMED_VALUE 101 -#endif -#endif diff --git a/project/vc8/nvimage/.ignore b/project/vc8/nvimage/.ignore deleted file mode 100644 index 66b0249..0000000 --- a/project/vc8/nvimage/.ignore +++ /dev/null @@ -1,3 +0,0 @@ -Debug -Release -*.icastano.user diff --git a/project/vc8/nvimage/nvimage.vcproj b/project/vc8/nvimage/nvimage.vcproj deleted file mode 100644 index 30efe0f..0000000 --- a/project/vc8/nvimage/nvimage.vcproj +++ /dev/null @@ -1,386 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/project/vc8/nvimgdiff/nvidia.ico b/project/vc8/nvimgdiff/nvidia.ico deleted file mode 100644 index 6aa721e..0000000 Binary files a/project/vc8/nvimgdiff/nvidia.ico and /dev/null differ diff --git a/project/vc8/nvimgdiff/nvimgdiff.rc b/project/vc8/nvimgdiff/nvimgdiff.rc deleted file mode 100644 index 842ded1..0000000 Binary files a/project/vc8/nvimgdiff/nvimgdiff.rc and /dev/null differ diff --git a/project/vc8/nvimgdiff/nvimgdiff.vcproj b/project/vc8/nvimgdiff/nvimgdiff.vcproj deleted file mode 100644 index 185132c..0000000 --- a/project/vc8/nvimgdiff/nvimgdiff.vcproj +++ /dev/null @@ -1,385 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/project/vc8/nvimgdiff/resource.h b/project/vc8/nvimgdiff/resource.h deleted file mode 100644 index e765787..0000000 --- a/project/vc8/nvimgdiff/resource.h +++ /dev/null @@ -1,16 +0,0 @@ -//{{NO_DEPENDENCIES}} -// Microsoft Visual C++ generated include file. -// Used by nvcompress.rc -// -#define IDI_ICON1 101 - -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NEXT_RESOURCE_VALUE 102 -#define _APS_NEXT_COMMAND_VALUE 40001 -#define _APS_NEXT_CONTROL_VALUE 1000 -#define _APS_NEXT_SYMED_VALUE 101 -#endif -#endif diff --git a/project/vc8/nvmath/.ignore b/project/vc8/nvmath/.ignore deleted file mode 100644 index 66b0249..0000000 --- a/project/vc8/nvmath/.ignore +++ /dev/null @@ -1,3 +0,0 @@ -Debug -Release -*.icastano.user diff --git a/project/vc8/nvmath/nvmath.vcproj b/project/vc8/nvmath/nvmath.vcproj deleted file mode 100644 index 43bb1d3..0000000 --- a/project/vc8/nvmath/nvmath.vcproj +++ /dev/null @@ -1,346 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/project/vc8/nvtt.sln b/project/vc8/nvtt.sln deleted file mode 100644 index baeb9b5..0000000 --- a/project/vc8/nvtt.sln +++ /dev/null @@ -1,453 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 9.00 -# Visual Studio 2005 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvtt", "nvtt\nvtt.vcproj", "{1AEB7681-57D8-48EE-813D-5C41CC38B647}" - ProjectSection(ProjectDependencies) = postProject - {CE017322-01FC-4851-9C8B-64E9A8E26C38} = {CE017322-01FC-4851-9C8B-64E9A8E26C38} - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} = {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} - {4046F392-A18B-4C66-9639-3EABFFF5D531} = {4046F392-A18B-4C66-9639-3EABFFF5D531} - {50C465FE-B308-42BC-894D-89484482AF06} = {50C465FE-B308-42BC-894D-89484482AF06} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvcompress", "nvcompress\nvcompress.vcproj", "{88079E38-83AA-4E8A-B18A-66A78D1B058B}" - ProjectSection(ProjectDependencies) = postProject - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} = {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} - {1AEB7681-57D8-48EE-813D-5C41CC38B647} = {1AEB7681-57D8-48EE-813D-5C41CC38B647} - {4046F392-A18B-4C66-9639-3EABFFF5D531} = {4046F392-A18B-4C66-9639-3EABFFF5D531} - {50C465FE-B308-42BC-894D-89484482AF06} = {50C465FE-B308-42BC-894D-89484482AF06} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvimage", "nvimage\nvimage.vcproj", "{4046F392-A18B-4C66-9639-3EABFFF5D531}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvcore", "nvcore\nvcore.vcproj", "{F143D180-D4C4-4037-B3DE-BE89A21C8D1D}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvmath", "nvmath\nvmath.vcproj", "{50C465FE-B308-42BC-894D-89484482AF06}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "squish", "squish\squish.vcproj", "{CE017322-01FC-4851-9C8B-64E9A8E26C38}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvddsinfo", "nvddsinfo\nvddsinfo.vcproj", "{841B73C5-C679-4EEF-A50A-7D6106642B49}" - ProjectSection(ProjectDependencies) = postProject - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} = {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} - {4046F392-A18B-4C66-9639-3EABFFF5D531} = {4046F392-A18B-4C66-9639-3EABFFF5D531} - {50C465FE-B308-42BC-894D-89484482AF06} = {50C465FE-B308-42BC-894D-89484482AF06} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvdecompress", "nvdecompress\nvdecompress.vcproj", "{75A0527D-BFC9-49C3-B46B-CD1A901D5927}" - ProjectSection(ProjectDependencies) = postProject - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} = {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} - {4046F392-A18B-4C66-9639-3EABFFF5D531} = {4046F392-A18B-4C66-9639-3EABFFF5D531} - {50C465FE-B308-42BC-894D-89484482AF06} = {50C465FE-B308-42BC-894D-89484482AF06} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvimgdiff", "nvimgdiff\nvimgdiff.vcproj", "{05A59E8B-EA70-4F22-89E8-E0927BA13064}" - ProjectSection(ProjectDependencies) = postProject - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} = {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} - {4046F392-A18B-4C66-9639-3EABFFF5D531} = {4046F392-A18B-4C66-9639-3EABFFF5D531} - {50C465FE-B308-42BC-894D-89484482AF06} = {50C465FE-B308-42BC-894D-89484482AF06} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvassemble", "nvassemble\nvassemble.vcproj", "{3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}" - ProjectSection(ProjectDependencies) = postProject - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} = {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} - {4046F392-A18B-4C66-9639-3EABFFF5D531} = {4046F392-A18B-4C66-9639-3EABFFF5D531} - {50C465FE-B308-42BC-894D-89484482AF06} = {50C465FE-B308-42BC-894D-89484482AF06} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvzoom", "nvzoom\nvzoom.vcproj", "{51999D3E-EF22-4BDD-965F-4201034D3DCE}" - ProjectSection(ProjectDependencies) = postProject - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} = {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} - {4046F392-A18B-4C66-9639-3EABFFF5D531} = {4046F392-A18B-4C66-9639-3EABFFF5D531} - {50C465FE-B308-42BC-894D-89484482AF06} = {50C465FE-B308-42BC-894D-89484482AF06} - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Nvidia.TextureTools", "Nvidia.TextureTools\Nvidia.TextureTools.csproj", "{CAB55C39-8FA9-4912-98D9-E52669C8911D}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvtt-testsuite", "testsuite\testsuite.vcproj", "{4B3DF7E1-7541-4351-BEC0-9AEB41BA5D33}" - ProjectSection(ProjectDependencies) = postProject - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} = {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} - {1AEB7681-57D8-48EE-813D-5C41CC38B647} = {1AEB7681-57D8-48EE-813D-5C41CC38B647} - {4046F392-A18B-4C66-9639-3EABFFF5D531} = {4046F392-A18B-4C66-9639-3EABFFF5D531} - {50C465FE-B308-42BC-894D-89484482AF06} = {50C465FE-B308-42BC-894D-89484482AF06} - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug (no cuda)|Any CPU = Debug (no cuda)|Any CPU - Debug (no cuda)|Mixed Platforms = Debug (no cuda)|Mixed Platforms - Debug (no cuda)|Win32 = Debug (no cuda)|Win32 - Debug (no cuda)|x64 = Debug (no cuda)|x64 - Debug|Any CPU = Debug|Any CPU - Debug|Mixed Platforms = Debug|Mixed Platforms - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - Release (no cuda)|Any CPU = Release (no cuda)|Any CPU - Release (no cuda)|Mixed Platforms = Release (no cuda)|Mixed Platforms - Release (no cuda)|Win32 = Release (no cuda)|Win32 - Release (no cuda)|x64 = Release (no cuda)|x64 - Release|Any CPU = Release|Any CPU - Release|Mixed Platforms = Release|Mixed Platforms - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug (no cuda)|Any CPU.ActiveCfg = Debug (no cuda)|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug (no cuda)|Mixed Platforms.ActiveCfg = Debug (no cuda)|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug (no cuda)|Mixed Platforms.Build.0 = Debug (no cuda)|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug (no cuda)|Win32.ActiveCfg = Debug (no cuda)|Win32 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug (no cuda)|Win32.Build.0 = Debug (no cuda)|Win32 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug (no cuda)|x64.ActiveCfg = Debug (no cuda)|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug (no cuda)|x64.Build.0 = Debug (no cuda)|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug|Any CPU.ActiveCfg = Debug|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug|Mixed Platforms.ActiveCfg = Debug|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug|Mixed Platforms.Build.0 = Debug|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug|Win32.ActiveCfg = Debug|Win32 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug|Win32.Build.0 = Debug|Win32 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug|x64.ActiveCfg = Debug|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug|x64.Build.0 = Debug|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release (no cuda)|Any CPU.ActiveCfg = Release (no cuda)|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release (no cuda)|Mixed Platforms.ActiveCfg = Release (no cuda)|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release (no cuda)|Mixed Platforms.Build.0 = Release (no cuda)|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release (no cuda)|Win32.ActiveCfg = Release (no cuda)|Win32 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release (no cuda)|Win32.Build.0 = Release (no cuda)|Win32 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release (no cuda)|x64.ActiveCfg = Release (no cuda)|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release (no cuda)|x64.Build.0 = Release (no cuda)|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release|Any CPU.ActiveCfg = Release|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release|Mixed Platforms.ActiveCfg = Release|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release|Mixed Platforms.Build.0 = Release|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release|Win32.ActiveCfg = Release|Win32 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release|Win32.Build.0 = Release|Win32 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release|x64.ActiveCfg = Release|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release|x64.Build.0 = Release|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug (no cuda)|Any CPU.ActiveCfg = Debug (no cuda)|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug (no cuda)|Mixed Platforms.ActiveCfg = Debug (no cuda)|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug (no cuda)|Mixed Platforms.Build.0 = Debug (no cuda)|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug (no cuda)|Win32.ActiveCfg = Debug (no cuda)|Win32 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug (no cuda)|Win32.Build.0 = Debug (no cuda)|Win32 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug (no cuda)|x64.ActiveCfg = Debug (no cuda)|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug (no cuda)|x64.Build.0 = Debug (no cuda)|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug|Any CPU.ActiveCfg = Debug|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug|Mixed Platforms.ActiveCfg = Debug|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug|Mixed Platforms.Build.0 = Debug|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug|Win32.ActiveCfg = Debug|Win32 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug|Win32.Build.0 = Debug|Win32 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug|x64.ActiveCfg = Debug|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug|x64.Build.0 = Debug|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release (no cuda)|Any CPU.ActiveCfg = Release (no cuda)|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release (no cuda)|Mixed Platforms.ActiveCfg = Release (no cuda)|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release (no cuda)|Mixed Platforms.Build.0 = Release (no cuda)|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release (no cuda)|Win32.ActiveCfg = Release (no cuda)|Win32 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release (no cuda)|Win32.Build.0 = Release (no cuda)|Win32 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release (no cuda)|x64.ActiveCfg = Release (no cuda)|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release (no cuda)|x64.Build.0 = Release (no cuda)|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release|Any CPU.ActiveCfg = Release|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release|Mixed Platforms.ActiveCfg = Release|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release|Mixed Platforms.Build.0 = Release|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release|Win32.ActiveCfg = Release|Win32 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release|Win32.Build.0 = Release|Win32 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release|x64.ActiveCfg = Release|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release|x64.Build.0 = Release|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug (no cuda)|Any CPU.ActiveCfg = Debug|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug (no cuda)|Mixed Platforms.ActiveCfg = Debug|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug (no cuda)|Mixed Platforms.Build.0 = Debug|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug (no cuda)|Win32.ActiveCfg = Debug|Win32 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug (no cuda)|Win32.Build.0 = Debug|Win32 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug (no cuda)|x64.ActiveCfg = Debug|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug (no cuda)|x64.Build.0 = Debug|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug|Any CPU.ActiveCfg = Debug|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug|Mixed Platforms.ActiveCfg = Debug|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug|Mixed Platforms.Build.0 = Debug|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug|Win32.ActiveCfg = Debug|Win32 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug|Win32.Build.0 = Debug|Win32 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug|x64.ActiveCfg = Debug|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug|x64.Build.0 = Debug|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release (no cuda)|Any CPU.ActiveCfg = Release|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release (no cuda)|Mixed Platforms.ActiveCfg = Release|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release (no cuda)|Mixed Platforms.Build.0 = Release|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release (no cuda)|Win32.ActiveCfg = Release|Win32 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release (no cuda)|Win32.Build.0 = Release|Win32 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release (no cuda)|x64.ActiveCfg = Release|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release (no cuda)|x64.Build.0 = Release|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release|Any CPU.ActiveCfg = Release|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release|Mixed Platforms.ActiveCfg = Release|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release|Mixed Platforms.Build.0 = Release|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release|Win32.ActiveCfg = Release|Win32 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release|Win32.Build.0 = Release|Win32 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release|x64.ActiveCfg = Release|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release|x64.Build.0 = Release|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug (no cuda)|Any CPU.ActiveCfg = Debug|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug (no cuda)|Mixed Platforms.ActiveCfg = Debug|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug (no cuda)|Mixed Platforms.Build.0 = Debug|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug (no cuda)|Win32.ActiveCfg = Debug|Win32 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug (no cuda)|Win32.Build.0 = Debug|Win32 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug (no cuda)|x64.ActiveCfg = Debug|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug (no cuda)|x64.Build.0 = Debug|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug|Any CPU.ActiveCfg = Debug|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug|Mixed Platforms.ActiveCfg = Debug|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug|Mixed Platforms.Build.0 = Debug|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug|Win32.ActiveCfg = Debug|Win32 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug|Win32.Build.0 = Debug|Win32 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug|x64.ActiveCfg = Debug|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug|x64.Build.0 = Debug|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release (no cuda)|Any CPU.ActiveCfg = Release|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release (no cuda)|Mixed Platforms.ActiveCfg = Release|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release (no cuda)|Mixed Platforms.Build.0 = Release|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release (no cuda)|Win32.ActiveCfg = Release|Win32 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release (no cuda)|Win32.Build.0 = Release|Win32 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release (no cuda)|x64.ActiveCfg = Release|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release (no cuda)|x64.Build.0 = Release|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release|Any CPU.ActiveCfg = Release|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release|Mixed Platforms.ActiveCfg = Release|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release|Mixed Platforms.Build.0 = Release|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release|Win32.ActiveCfg = Release|Win32 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release|Win32.Build.0 = Release|Win32 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release|x64.ActiveCfg = Release|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release|x64.Build.0 = Release|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug (no cuda)|Any CPU.ActiveCfg = Debug|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug (no cuda)|Mixed Platforms.ActiveCfg = Debug|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug (no cuda)|Mixed Platforms.Build.0 = Debug|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug (no cuda)|Win32.ActiveCfg = Debug|Win32 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug (no cuda)|Win32.Build.0 = Debug|Win32 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug (no cuda)|x64.ActiveCfg = Debug|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug (no cuda)|x64.Build.0 = Debug|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug|Any CPU.ActiveCfg = Debug|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug|Mixed Platforms.ActiveCfg = Debug|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug|Mixed Platforms.Build.0 = Debug|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug|Win32.ActiveCfg = Debug|Win32 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug|Win32.Build.0 = Debug|Win32 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug|x64.ActiveCfg = Debug|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug|x64.Build.0 = Debug|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Release (no cuda)|Any CPU.ActiveCfg = Release|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Release (no cuda)|Mixed Platforms.ActiveCfg = Release|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Release (no cuda)|Mixed Platforms.Build.0 = Release|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Release (no cuda)|Win32.ActiveCfg = Release|Win32 - {50C465FE-B308-42BC-894D-89484482AF06}.Release (no cuda)|Win32.Build.0 = Release|Win32 - {50C465FE-B308-42BC-894D-89484482AF06}.Release (no cuda)|x64.ActiveCfg = Release|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Release (no cuda)|x64.Build.0 = Release|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Release|Any CPU.ActiveCfg = Release|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Release|Mixed Platforms.ActiveCfg = Release|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Release|Mixed Platforms.Build.0 = Release|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Release|Win32.ActiveCfg = Release|Win32 - {50C465FE-B308-42BC-894D-89484482AF06}.Release|Win32.Build.0 = Release|Win32 - {50C465FE-B308-42BC-894D-89484482AF06}.Release|x64.ActiveCfg = Release|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Release|x64.Build.0 = Release|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug (no cuda)|Any CPU.ActiveCfg = Debug|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug (no cuda)|Mixed Platforms.ActiveCfg = Debug|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug (no cuda)|Mixed Platforms.Build.0 = Debug|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug (no cuda)|Win32.ActiveCfg = Debug|Win32 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug (no cuda)|Win32.Build.0 = Debug|Win32 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug (no cuda)|x64.ActiveCfg = Debug|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug (no cuda)|x64.Build.0 = Debug|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug|Any CPU.ActiveCfg = Debug|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug|Mixed Platforms.ActiveCfg = Debug|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug|Mixed Platforms.Build.0 = Debug|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug|Win32.ActiveCfg = Debug|Win32 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug|Win32.Build.0 = Debug|Win32 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug|x64.ActiveCfg = Debug|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug|x64.Build.0 = Debug|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release (no cuda)|Any CPU.ActiveCfg = Release|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release (no cuda)|Mixed Platforms.ActiveCfg = Release|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release (no cuda)|Mixed Platforms.Build.0 = Release|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release (no cuda)|Win32.ActiveCfg = Release|Win32 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release (no cuda)|Win32.Build.0 = Release|Win32 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release (no cuda)|x64.ActiveCfg = Release|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release (no cuda)|x64.Build.0 = Release|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release|Any CPU.ActiveCfg = Release|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release|Mixed Platforms.ActiveCfg = Release|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release|Mixed Platforms.Build.0 = Release|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release|Win32.ActiveCfg = Release|Win32 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release|Win32.Build.0 = Release|Win32 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release|x64.ActiveCfg = Release|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release|x64.Build.0 = Release|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug (no cuda)|Any CPU.ActiveCfg = Debug|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug (no cuda)|Mixed Platforms.ActiveCfg = Debug|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug (no cuda)|Mixed Platforms.Build.0 = Debug|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug (no cuda)|Win32.ActiveCfg = Debug|Win32 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug (no cuda)|Win32.Build.0 = Debug|Win32 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug (no cuda)|x64.ActiveCfg = Debug|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug (no cuda)|x64.Build.0 = Debug|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug|Any CPU.ActiveCfg = Debug|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug|Mixed Platforms.ActiveCfg = Debug|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug|Mixed Platforms.Build.0 = Debug|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug|Win32.ActiveCfg = Debug|Win32 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug|Win32.Build.0 = Debug|Win32 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug|x64.ActiveCfg = Debug|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug|x64.Build.0 = Debug|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release (no cuda)|Any CPU.ActiveCfg = Release|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release (no cuda)|Mixed Platforms.ActiveCfg = Release|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release (no cuda)|Mixed Platforms.Build.0 = Release|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release (no cuda)|Win32.ActiveCfg = Release|Win32 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release (no cuda)|Win32.Build.0 = Release|Win32 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release (no cuda)|x64.ActiveCfg = Release|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release (no cuda)|x64.Build.0 = Release|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release|Any CPU.ActiveCfg = Release|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release|Mixed Platforms.ActiveCfg = Release|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release|Mixed Platforms.Build.0 = Release|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release|Win32.ActiveCfg = Release|Win32 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release|Win32.Build.0 = Release|Win32 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release|x64.ActiveCfg = Release|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release|x64.Build.0 = Release|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug (no cuda)|Any CPU.ActiveCfg = Debug|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug (no cuda)|Mixed Platforms.ActiveCfg = Debug|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug (no cuda)|Mixed Platforms.Build.0 = Debug|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug (no cuda)|Win32.ActiveCfg = Debug|Win32 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug (no cuda)|Win32.Build.0 = Debug|Win32 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug (no cuda)|x64.ActiveCfg = Debug|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug (no cuda)|x64.Build.0 = Debug|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug|Any CPU.ActiveCfg = Debug|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug|Mixed Platforms.ActiveCfg = Debug|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug|Mixed Platforms.Build.0 = Debug|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug|Win32.ActiveCfg = Debug|Win32 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug|Win32.Build.0 = Debug|Win32 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug|x64.ActiveCfg = Debug|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug|x64.Build.0 = Debug|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release (no cuda)|Any CPU.ActiveCfg = Release|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release (no cuda)|Mixed Platforms.ActiveCfg = Release|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release (no cuda)|Mixed Platforms.Build.0 = Release|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release (no cuda)|Win32.ActiveCfg = Release|Win32 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release (no cuda)|Win32.Build.0 = Release|Win32 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release (no cuda)|x64.ActiveCfg = Release|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release (no cuda)|x64.Build.0 = Release|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release|Any CPU.ActiveCfg = Release|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release|Mixed Platforms.ActiveCfg = Release|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release|Mixed Platforms.Build.0 = Release|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release|Win32.ActiveCfg = Release|Win32 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release|Win32.Build.0 = Release|Win32 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release|x64.ActiveCfg = Release|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release|x64.Build.0 = Release|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug (no cuda)|Any CPU.ActiveCfg = Debug|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug (no cuda)|Mixed Platforms.ActiveCfg = Debug|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug (no cuda)|Mixed Platforms.Build.0 = Debug|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug (no cuda)|Win32.ActiveCfg = Debug|Win32 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug (no cuda)|Win32.Build.0 = Debug|Win32 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug (no cuda)|x64.ActiveCfg = Debug|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug (no cuda)|x64.Build.0 = Debug|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug|Any CPU.ActiveCfg = Debug|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug|Mixed Platforms.ActiveCfg = Debug|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug|Mixed Platforms.Build.0 = Debug|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug|Win32.ActiveCfg = Debug|Win32 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug|Win32.Build.0 = Debug|Win32 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug|x64.ActiveCfg = Debug|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug|x64.Build.0 = Debug|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release (no cuda)|Any CPU.ActiveCfg = Release|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release (no cuda)|Mixed Platforms.ActiveCfg = Release|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release (no cuda)|Mixed Platforms.Build.0 = Release|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release (no cuda)|Win32.ActiveCfg = Release|Win32 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release (no cuda)|Win32.Build.0 = Release|Win32 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release (no cuda)|x64.ActiveCfg = Release|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release (no cuda)|x64.Build.0 = Release|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release|Any CPU.ActiveCfg = Release|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release|Mixed Platforms.ActiveCfg = Release|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release|Mixed Platforms.Build.0 = Release|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release|Win32.ActiveCfg = Release|Win32 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release|Win32.Build.0 = Release|Win32 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release|x64.ActiveCfg = Release|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release|x64.Build.0 = Release|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug (no cuda)|Any CPU.ActiveCfg = Debug|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug (no cuda)|Mixed Platforms.ActiveCfg = Debug|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug (no cuda)|Mixed Platforms.Build.0 = Debug|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug (no cuda)|Win32.ActiveCfg = Debug|Win32 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug (no cuda)|Win32.Build.0 = Debug|Win32 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug (no cuda)|x64.ActiveCfg = Debug|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug (no cuda)|x64.Build.0 = Debug|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug|Any CPU.ActiveCfg = Debug|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug|Mixed Platforms.ActiveCfg = Debug|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug|Mixed Platforms.Build.0 = Debug|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug|Win32.ActiveCfg = Debug|Win32 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug|Win32.Build.0 = Debug|Win32 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug|x64.ActiveCfg = Debug|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug|x64.Build.0 = Debug|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release (no cuda)|Any CPU.ActiveCfg = Release|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release (no cuda)|Mixed Platforms.ActiveCfg = Release|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release (no cuda)|Mixed Platforms.Build.0 = Release|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release (no cuda)|Win32.ActiveCfg = Release|Win32 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release (no cuda)|Win32.Build.0 = Release|Win32 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release (no cuda)|x64.ActiveCfg = Release|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release (no cuda)|x64.Build.0 = Release|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release|Any CPU.ActiveCfg = Release|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release|Mixed Platforms.ActiveCfg = Release|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release|Mixed Platforms.Build.0 = Release|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release|Win32.ActiveCfg = Release|Win32 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release|Win32.Build.0 = Release|Win32 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release|x64.ActiveCfg = Release|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release|x64.Build.0 = Release|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug (no cuda)|Any CPU.ActiveCfg = Debug|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug (no cuda)|Mixed Platforms.ActiveCfg = Debug|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug (no cuda)|Mixed Platforms.Build.0 = Debug|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug (no cuda)|Win32.ActiveCfg = Debug|Win32 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug (no cuda)|Win32.Build.0 = Debug|Win32 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug (no cuda)|x64.ActiveCfg = Debug|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug (no cuda)|x64.Build.0 = Debug|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug|Any CPU.ActiveCfg = Debug|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug|Mixed Platforms.ActiveCfg = Debug|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug|Mixed Platforms.Build.0 = Debug|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug|Win32.ActiveCfg = Debug|Win32 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug|Win32.Build.0 = Debug|Win32 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug|x64.ActiveCfg = Debug|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug|x64.Build.0 = Debug|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release (no cuda)|Any CPU.ActiveCfg = Release|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release (no cuda)|Mixed Platforms.ActiveCfg = Release|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release (no cuda)|Mixed Platforms.Build.0 = Release|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release (no cuda)|Win32.ActiveCfg = Release|Win32 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release (no cuda)|Win32.Build.0 = Release|Win32 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release (no cuda)|x64.ActiveCfg = Release|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release (no cuda)|x64.Build.0 = Release|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release|Any CPU.ActiveCfg = Release|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release|Mixed Platforms.ActiveCfg = Release|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release|Mixed Platforms.Build.0 = Release|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release|Win32.ActiveCfg = Release|Win32 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release|Win32.Build.0 = Release|Win32 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release|x64.ActiveCfg = Release|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release|x64.Build.0 = Release|x64 - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Debug (no cuda)|Any CPU.ActiveCfg = Debug|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Debug (no cuda)|Any CPU.Build.0 = Debug|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Debug (no cuda)|Mixed Platforms.ActiveCfg = Debug|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Debug (no cuda)|Mixed Platforms.Build.0 = Debug|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Debug (no cuda)|Win32.ActiveCfg = Debug|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Debug (no cuda)|x64.ActiveCfg = Debug|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Debug|Any CPU.Build.0 = Debug|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Debug|Win32.ActiveCfg = Debug|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Debug|x64.ActiveCfg = Debug|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Release (no cuda)|Any CPU.ActiveCfg = Release|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Release (no cuda)|Any CPU.Build.0 = Release|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Release (no cuda)|Mixed Platforms.ActiveCfg = Release|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Release (no cuda)|Mixed Platforms.Build.0 = Release|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Release (no cuda)|Win32.ActiveCfg = Release|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Release (no cuda)|x64.ActiveCfg = Release|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Release|Any CPU.ActiveCfg = Release|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Release|Any CPU.Build.0 = Release|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Release|Win32.ActiveCfg = Release|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Release|x64.ActiveCfg = Release|Any CPU - {4B3DF7E1-7541-4351-BEC0-9AEB41BA5D33}.Debug (no cuda)|Any CPU.ActiveCfg = Debug|Win32 - {4B3DF7E1-7541-4351-BEC0-9AEB41BA5D33}.Debug (no cuda)|Mixed Platforms.ActiveCfg = Debug|Win32 - {4B3DF7E1-7541-4351-BEC0-9AEB41BA5D33}.Debug (no cuda)|Mixed Platforms.Build.0 = Debug|Win32 - {4B3DF7E1-7541-4351-BEC0-9AEB41BA5D33}.Debug (no cuda)|Win32.ActiveCfg = Debug|Win32 - {4B3DF7E1-7541-4351-BEC0-9AEB41BA5D33}.Debug (no cuda)|Win32.Build.0 = Debug|Win32 - {4B3DF7E1-7541-4351-BEC0-9AEB41BA5D33}.Debug (no cuda)|x64.ActiveCfg = Debug|Win32 - {4B3DF7E1-7541-4351-BEC0-9AEB41BA5D33}.Debug|Any CPU.ActiveCfg = Debug|Win32 - {4B3DF7E1-7541-4351-BEC0-9AEB41BA5D33}.Debug|Mixed Platforms.ActiveCfg = Debug|Win32 - {4B3DF7E1-7541-4351-BEC0-9AEB41BA5D33}.Debug|Mixed Platforms.Build.0 = Debug|Win32 - {4B3DF7E1-7541-4351-BEC0-9AEB41BA5D33}.Debug|Win32.ActiveCfg = Debug|Win32 - {4B3DF7E1-7541-4351-BEC0-9AEB41BA5D33}.Debug|Win32.Build.0 = Debug|Win32 - {4B3DF7E1-7541-4351-BEC0-9AEB41BA5D33}.Debug|x64.ActiveCfg = Debug|Win32 - {4B3DF7E1-7541-4351-BEC0-9AEB41BA5D33}.Release (no cuda)|Any CPU.ActiveCfg = Release|Win32 - {4B3DF7E1-7541-4351-BEC0-9AEB41BA5D33}.Release (no cuda)|Mixed Platforms.ActiveCfg = Release|Win32 - {4B3DF7E1-7541-4351-BEC0-9AEB41BA5D33}.Release (no cuda)|Mixed Platforms.Build.0 = Release|Win32 - {4B3DF7E1-7541-4351-BEC0-9AEB41BA5D33}.Release (no cuda)|Win32.ActiveCfg = Release|Win32 - {4B3DF7E1-7541-4351-BEC0-9AEB41BA5D33}.Release (no cuda)|Win32.Build.0 = Release|Win32 - {4B3DF7E1-7541-4351-BEC0-9AEB41BA5D33}.Release (no cuda)|x64.ActiveCfg = Release|Win32 - {4B3DF7E1-7541-4351-BEC0-9AEB41BA5D33}.Release|Any CPU.ActiveCfg = Release|Win32 - {4B3DF7E1-7541-4351-BEC0-9AEB41BA5D33}.Release|Mixed Platforms.ActiveCfg = Release|Win32 - {4B3DF7E1-7541-4351-BEC0-9AEB41BA5D33}.Release|Mixed Platforms.Build.0 = Release|Win32 - {4B3DF7E1-7541-4351-BEC0-9AEB41BA5D33}.Release|Win32.ActiveCfg = Release|Win32 - {4B3DF7E1-7541-4351-BEC0-9AEB41BA5D33}.Release|Win32.Build.0 = Release|Win32 - {4B3DF7E1-7541-4351-BEC0-9AEB41BA5D33}.Release|x64.ActiveCfg = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/project/vc8/nvtt.vsprops b/project/vc8/nvtt.vsprops deleted file mode 100644 index 07204cb..0000000 --- a/project/vc8/nvtt.vsprops +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - diff --git a/project/vc8/nvtt/.ignore b/project/vc8/nvtt/.ignore deleted file mode 100644 index 8c0cc17..0000000 --- a/project/vc8/nvtt/.ignore +++ /dev/null @@ -1,22 +0,0 @@ -Debug -Debug (no cuda) -Release -Release (no cuda) -*.icastano.user -*.gpu -*.ii -*.stub.h -*.stub.c -*.pdb -*.cubin -*.hash -*.cudafe1.cpp -*.cudafe1.c -*.cudafe2.c -*.cu.cpp -*.cu.c -*.fatbin.c -*.ptx -*.linkinfo -*.cpp2.i -*.cpp3.i diff --git a/project/vc8/nvtt/nvtt.rc b/project/vc8/nvtt/nvtt.rc deleted file mode 100644 index 089d1e9..0000000 --- a/project/vc8/nvtt/nvtt.rc +++ /dev/null @@ -1,102 +0,0 @@ -// Microsoft Visual C++ generated resource script. -// -#include "resource.h" - -#define APSTUDIO_READONLY_SYMBOLS -///////////////////////////////////////////////////////////////////////////// -// -// Generated from the TEXTINCLUDE 2 resource. -// -#include "afxres.h" - -///////////////////////////////////////////////////////////////////////////// -#undef APSTUDIO_READONLY_SYMBOLS - -///////////////////////////////////////////////////////////////////////////// -// English (U.S.) resources - -#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) -#ifdef _WIN32 -LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US -#pragma code_page(1252) -#endif //_WIN32 - -#ifdef APSTUDIO_INVOKED -///////////////////////////////////////////////////////////////////////////// -// -// TEXTINCLUDE -// - -1 TEXTINCLUDE -BEGIN - "resource.h\0" -END - -2 TEXTINCLUDE -BEGIN - "#include ""afxres.h""\r\n" - "\0" -END - -3 TEXTINCLUDE -BEGIN - "\r\n" - "\0" -END - -#endif // APSTUDIO_INVOKED - - -///////////////////////////////////////////////////////////////////////////// -// -// Version -// - -VS_VERSION_INFO VERSIONINFO - FILEVERSION 2,1,0,0 - PRODUCTVERSION 2,1,0,0 - FILEFLAGSMASK 0x17L -#ifdef _DEBUG - FILEFLAGS 0x1L -#else - FILEFLAGS 0x0L -#endif - FILEOS 0x4L - FILETYPE 0x2L - FILESUBTYPE 0x0L -BEGIN - BLOCK "StringFileInfo" - BEGIN - BLOCK "040904b0" - BEGIN - VALUE "CompanyName", "NVIDIA Corporation" - VALUE "FileDescription", "NVIDIA Texture Tools Dynamic Link Library" - VALUE "FileVersion", "2, 1, 0, 0" - VALUE "InternalName", "nvtt" - VALUE "LegalCopyright", "Copyright (C) 2007" - VALUE "OriginalFilename", "nvtt.dll" - VALUE "ProductName", "NVIDIA Texture Tools Dynamic Link Library" - VALUE "ProductVersion", "2, 1, 0, 0" - END - END - BLOCK "VarFileInfo" - BEGIN - VALUE "Translation", 0x409, 1200 - END -END - -#endif // English (U.S.) resources -///////////////////////////////////////////////////////////////////////////// - - - -#ifndef APSTUDIO_INVOKED -///////////////////////////////////////////////////////////////////////////// -// -// Generated from the TEXTINCLUDE 3 resource. -// - - -///////////////////////////////////////////////////////////////////////////// -#endif // not APSTUDIO_INVOKED - diff --git a/project/vc8/nvtt/nvtt.vcproj b/project/vc8/nvtt/nvtt.vcproj deleted file mode 100644 index 57498b9..0000000 --- a/project/vc8/nvtt/nvtt.vcproj +++ /dev/null @@ -1,981 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/project/vc8/nvtt/resource.h b/project/vc8/nvtt/resource.h deleted file mode 100644 index 4df7169..0000000 --- a/project/vc8/nvtt/resource.h +++ /dev/null @@ -1,14 +0,0 @@ -//{{NO_DEPENDENCIES}} -// Microsoft Visual C++ generated include file. -// Used by nvtt.rc - -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NEXT_RESOURCE_VALUE 101 -#define _APS_NEXT_COMMAND_VALUE 40001 -#define _APS_NEXT_CONTROL_VALUE 1001 -#define _APS_NEXT_SYMED_VALUE 101 -#endif -#endif diff --git a/project/vc8/nvzoom/nvidia.ico b/project/vc8/nvzoom/nvidia.ico deleted file mode 100644 index 6aa721e..0000000 Binary files a/project/vc8/nvzoom/nvidia.ico and /dev/null differ diff --git a/project/vc8/nvzoom/nvzoom.rc b/project/vc8/nvzoom/nvzoom.rc deleted file mode 100644 index 842ded1..0000000 Binary files a/project/vc8/nvzoom/nvzoom.rc and /dev/null differ diff --git a/project/vc8/nvzoom/nvzoom.vcproj b/project/vc8/nvzoom/nvzoom.vcproj deleted file mode 100644 index 0711ce2..0000000 --- a/project/vc8/nvzoom/nvzoom.vcproj +++ /dev/null @@ -1,385 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/project/vc8/nvzoom/resource.h b/project/vc8/nvzoom/resource.h deleted file mode 100644 index e765787..0000000 --- a/project/vc8/nvzoom/resource.h +++ /dev/null @@ -1,16 +0,0 @@ -//{{NO_DEPENDENCIES}} -// Microsoft Visual C++ generated include file. -// Used by nvcompress.rc -// -#define IDI_ICON1 101 - -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NEXT_RESOURCE_VALUE 102 -#define _APS_NEXT_COMMAND_VALUE 40001 -#define _APS_NEXT_CONTROL_VALUE 1000 -#define _APS_NEXT_SYMED_VALUE 101 -#endif -#endif diff --git a/project/vc8/squish/squish.vcproj b/project/vc8/squish/squish.vcproj deleted file mode 100644 index cd57ab6..0000000 --- a/project/vc8/squish/squish.vcproj +++ /dev/null @@ -1,354 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/project/vc8/testsuite/testsuite.vcproj b/project/vc8/testsuite/testsuite.vcproj deleted file mode 100644 index ee7e00f..0000000 --- a/project/vc8/testsuite/testsuite.vcproj +++ /dev/null @@ -1,207 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/project/vc9/.ignore b/project/vc9/.ignore deleted file mode 100644 index b351d81..0000000 --- a/project/vc9/.ignore +++ /dev/null @@ -1,13 +0,0 @@ -nvtt.suo -nvtt.ncb -release.win32 -debug.win32 -release.x64 -debug.x64 -release (no cuda).win32 -debug (no cuda).win32 -release (no cuda).x64 -debug (no cuda).x64 -Release -Debug -*.icastano.user diff --git a/project/vc9/Nvidia.TextureTools/Nvidia.TextureTools.csproj b/project/vc9/Nvidia.TextureTools/Nvidia.TextureTools.csproj deleted file mode 100644 index 8ee960c..0000000 --- a/project/vc9/Nvidia.TextureTools/Nvidia.TextureTools.csproj +++ /dev/null @@ -1,53 +0,0 @@ - - - Debug - AnyCPU - 9.0.21022 - 2.0 - {CAB55C39-8FA9-4912-98D9-E52669C8911D} - Library - Properties - Nvidia.TextureTools - Nvidia.TextureTools - - - 2.0 - - - OnBuildSuccess - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - - - - - - - - - - \ No newline at end of file diff --git a/project/vc9/Nvidia.TextureTools/Properties/AssemblyInfo.cs b/project/vc9/Nvidia.TextureTools/Properties/AssemblyInfo.cs deleted file mode 100644 index ecd652e..0000000 --- a/project/vc9/Nvidia.TextureTools/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,35 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("Nvidia.TextureTools")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("NVIDIA Corporation")] -[assembly: AssemblyProduct("Nvidia.TextureTools")] -[assembly: AssemblyCopyright("Copyright © NVIDIA 2008")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("5fa03fb3-b7a3-4ba8-90e7-545929731356")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/project/vc9/Nvidia.TextureTools/TextureTools.cs b/project/vc9/Nvidia.TextureTools/TextureTools.cs deleted file mode 100644 index 6ccae1a..0000000 --- a/project/vc9/Nvidia.TextureTools/TextureTools.cs +++ /dev/null @@ -1,751 +0,0 @@ -using System; -using System.Security; -using System.Runtime.InteropServices; - -namespace Nvidia.TextureTools -{ - #region Enums - - #region public enum Format - /// - /// Compression format. - /// - public enum Format - { - // No compression. - RGB, - RGBA = RGB, - - // DX9 formats. - DXT1, - DXT1a, - DXT3, - DXT5, - DXT5n, - - // DX10 formats. - BC1 = DXT1, - BC1a = DXT1a, - BC2 = DXT3, - BC3 = DXT5, - BC3n = DXT5n, - BC4, - BC5, - - DXT1n, // Not supported. - CTX1, // Not supported. - - BC6, - BC7, - } - #endregion - - #region public enum PixelType - /// - /// Pixel types. These basically indicate how the output should be interpreted, but do not have any influence over the input. They are only relevant in RGBA mode. - /// - enum PixelType - { - UnsignedNorm = 0, - SignedNorm = 1, // Not supported yet. - UnsignedInt = 2, // Not supported yet. - SignedInt = 3, // Not supported yet. - Float = 4, - UnsignedFloat = 5, - } - #endregion - - #region public enum Quality - /// - /// Quality modes. - /// - public enum Quality - { - Fastest, - Normal, - Production, - Highest, - } - #endregion - - #region public enum Decoder - /// - /// DXT decoder. - /// - enum Decoder - { - Decoder_D3D10, - Decoder_D3D9, - Decoder_NV5x, - }; - #endregion - - #region public enum WrapMode - /// - /// Wrap modes. - /// - public enum WrapMode - { - Clamp, - Repeat, - Mirror, - } - #endregion - - #region public enum TextureType - /// - /// Texture types. - /// - public enum TextureType - { - Texture2D, - TextureCube, - Texture3D, - } - #endregion - - #region public enum InputFormat - /// - /// Input formats. - /// - public enum InputFormat - { - BGRA_8UB, // Normalized [0, 1] 8 bit fixed point. - RGBA_16F, // 16 bit floating point. - RGBA_32F, // 32 bit floating point. - } - #endregion - - #region public enum MipmapFilter - /// - /// Mipmap downsampling filters. - /// - public enum MipmapFilter - { - Box, - Triangle, - Kaiser - } - #endregion - - #region public enum ResizeFilter - /// - /// Texture resize filters. - /// - public enum ResizeFilter - { - Box, - Triangle, - Kaiser, - Mitchell - } - #endregion - - #region public enum RoundMode - /// - /// Extents rounding mode. - /// - public enum RoundMode - { - None, - ToNextPowerOfTwo, - ToNearestPowerOfTwo, - ToPreviousPowerOfTwo - } - #endregion - - #region public enum AlphaMode - /// - /// Alpha mode. - /// - public enum AlphaMode - { - None, - Transparency, - Premultiplied - } - #endregion - - #region public enum CubeLayout - /// Cube layout formats. - /// (New in NVTT 2.1) - public enum CubeLayout - { - VerticalCross, - HorizontalCross, - Column, - Row, - LatitudeLongitude - }; - #endregion - - #region public enum EdgeFixup - /// Cube map edge fixup methods. - /// (New in NVTT 2.1) - public enum EdgeFixup - { - None, - Stretch, - Warp, - Average, - }; - #endregion - - #region public enum Error - /// - /// Error codes. - /// - public enum Error - { - InvalidInput, - UserInterruption, - UnsupportedFeature, - CudaError, - Unknown, - FileOpen, - FileWrite, - } - #endregion - - #endregion - - #region public class InputOptions - /// - /// Input options. - /// - public class InputOptions - { - #region Bindings - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static IntPtr nvttCreateInputOptions(); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttDestroyInputOptions(IntPtr inputOptions); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsTextureLayout(IntPtr inputOptions, TextureType type, int w, int h, int d); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttResetInputOptionsTextureLayout(IntPtr inputOptions); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static bool nvttSetInputOptionsMipmapData(IntPtr inputOptions, IntPtr data, int w, int h, int d, int face, int mipmap); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsFormat(IntPtr inputOptions, InputFormat format); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsAlphaMode(IntPtr inputOptions, AlphaMode alphaMode); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsGamma(IntPtr inputOptions, float inputGamma, float outputGamma); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsWrapMode(IntPtr inputOptions, WrapMode mode); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsMipmapFilter(IntPtr inputOptions, MipmapFilter filter); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsMipmapGeneration(IntPtr inputOptions, bool generateMipmaps, int maxLevel); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsKaiserParameters(IntPtr inputOptions, float width, float alpha, float stretch); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsNormalMap(IntPtr inputOptions, bool b); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsConvertToNormalMap(IntPtr inputOptions, bool convert); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsHeightEvaluation(IntPtr inputOptions, float redScale, float greenScale, float blueScale, float alphaScale); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsNormalFilter(IntPtr inputOptions, float small, float medium, float big, float large); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsNormalizeMipmaps(IntPtr inputOptions, bool b); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsMaxExtents(IntPtr inputOptions, int d); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetInputOptionsRoundMode(IntPtr inputOptions, RoundMode mode); - #endregion - - internal IntPtr options; - - public InputOptions() - { - options = nvttCreateInputOptions(); - } - ~InputOptions() - { - nvttDestroyInputOptions(options); - } - - public void SetTextureLayout(TextureType type, int w, int h, int d) - { - nvttSetInputOptionsTextureLayout(options, type, w, h, d); - } - public void ResetTextureLayout() - { - nvttResetInputOptionsTextureLayout(options); - } - - public void SetMipmapData(IntPtr data, int width, int height, int depth, int face, int mipmap) - { - nvttSetInputOptionsMipmapData(options, data, width, height, depth, face, mipmap); - } - - public void SetFormat(InputFormat format) - { - nvttSetInputOptionsFormat(options, format); - } - - public void SetAlphaMode(AlphaMode alphaMode) - { - nvttSetInputOptionsAlphaMode(options, alphaMode); - } - - public void SetGamma(float inputGamma, float outputGamma) - { - nvttSetInputOptionsGamma(options, inputGamma, outputGamma); - } - - public void SetWrapMode(WrapMode wrapMode) - { - nvttSetInputOptionsWrapMode(options, wrapMode); - } - - public void SetMipmapFilter(MipmapFilter filter) - { - nvttSetInputOptionsMipmapFilter(options, filter); - } - - public void SetMipmapGeneration(bool enabled) - { - nvttSetInputOptionsMipmapGeneration(options, enabled, -1); - } - - public void SetMipmapGeneration(bool enabled, int maxLevel) - { - nvttSetInputOptionsMipmapGeneration(options, enabled, maxLevel); - } - - public void SetKaiserParameters(float width, float alpha, float stretch) - { - nvttSetInputOptionsKaiserParameters(options, width, alpha, stretch); - } - - public void SetNormalMap(bool b) - { - nvttSetInputOptionsNormalMap(options, b); - } - - public void SetConvertToNormalMap(bool convert) - { - nvttSetInputOptionsConvertToNormalMap(options, convert); - } - - public void SetHeightEvaluation(float redScale, float greenScale, float blueScale, float alphaScale) - { - nvttSetInputOptionsHeightEvaluation(options, redScale, greenScale, blueScale, alphaScale); - } - - public void SetNormalFilter(float small, float medium, float big, float large) - { - nvttSetInputOptionsNormalFilter(options, small, medium, big, large); - } - - public void SetNormalizeMipmaps(bool b) - { - nvttSetInputOptionsNormalizeMipmaps(options, b); - } - - public void SetMaxExtents(int dim) - { - nvttSetInputOptionsMaxExtents(options, dim); - } - - public void SetRoundMode(RoundMode mode) - { - nvttSetInputOptionsRoundMode(options, mode); - } - } - #endregion - - #region public class CompressionOptions - /// - /// Compression options. - /// - public class CompressionOptions - { - #region Bindings - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static IntPtr nvttCreateCompressionOptions(); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttDestroyCompressionOptions(IntPtr compressionOptions); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetCompressionOptionsFormat(IntPtr compressionOptions, Format format); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetCompressionOptionsQuality(IntPtr compressionOptions, Quality quality); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetCompressionOptionsColorWeights(IntPtr compressionOptions, float red, float green, float blue, float alpha); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetCompressionOptionsPixelFormat(IntPtr compressionOptions, uint bitcount, uint rmask, uint gmask, uint bmask, uint amask); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetCompressionOptionsQuantization(IntPtr compressionOptions, bool colorDithering, bool alphaDithering, bool binaryAlpha, int alphaThreshold); - #endregion - - internal IntPtr options; - - public CompressionOptions() - { - options = nvttCreateCompressionOptions(); - } - ~CompressionOptions() - { - nvttDestroyCompressionOptions(options); - } - - public void SetFormat(Format format) - { - nvttSetCompressionOptionsFormat(options, format); - } - - public void SetQuality(Quality quality) - { - nvttSetCompressionOptionsQuality(options, quality); - } - - public void SetColorWeights(float red, float green, float blue) - { - nvttSetCompressionOptionsColorWeights(options, red, green, blue, 1.0f); - } - - public void SetColorWeights(float red, float green, float blue, float alpha) - { - nvttSetCompressionOptionsColorWeights(options, red, green, blue, alpha); - } - - public void SetPixelFormat(uint bitcount, uint rmask, uint gmask, uint bmask, uint amask) - { - nvttSetCompressionOptionsPixelFormat(options, bitcount, rmask, gmask, bmask, amask); - } - - public void SetQuantization(bool colorDithering, bool alphaDithering, bool binaryAlpha) - { - nvttSetCompressionOptionsQuantization(options, colorDithering, alphaDithering, binaryAlpha, 127); - } - - public void SetQuantization(bool colorDithering, bool alphaDithering, bool binaryAlpha, int alphaThreshold) - { - nvttSetCompressionOptionsQuantization(options, colorDithering, alphaDithering, binaryAlpha, alphaThreshold); - } - } - #endregion - - #region public class OutputOptions - /// - /// Output options. - /// - public class OutputOptions - { - #region Delegates - public delegate void ErrorHandler(Error error); - - //[UnmanagedFunctionPointer(CallingConvention.Cdecl)] - //public delegate void InternalErrorHandlerDelegate(Error error); - - [UnmanagedFunctionPointer(CallingConvention.Cdecl)] - public delegate void BeginImageDelegate(int size, int width, int height, int depth, int face, int miplevel); - - [UnmanagedFunctionPointer(CallingConvention.Cdecl)] - public delegate bool WriteDataDelegate(IntPtr data, int size); - - [UnmanagedFunctionPointer(CallingConvention.Cdecl)] - public delegate void EndImageDelegate(); - #endregion - - #region Bindings - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static IntPtr nvttCreateOutputOptions(); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttDestroyOutputOptions(IntPtr outputOptions); - - [DllImport("nvtt", CharSet = CharSet.Ansi), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetOutputOptionsFileName(IntPtr outputOptions, string fileName); - - //[DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - //private extern static void nvttSetOutputOptionsErrorHandler(IntPtr outputOptions, ErrorHandler errorHandler); - - private void ErrorCallback(Error error) - { - if (Error != null) Error(error); - } - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetOutputOptionsOutputHeader(IntPtr outputOptions, bool b); - - [DllImport("nvtt", CallingConvention = CallingConvention.Cdecl), SuppressUnmanagedCodeSecurity] - private extern static void nvttSetOutputOptionsOutputHandler(IntPtr outputOptions, IntPtr beginImage, IntPtr writeData, IntPtr endImage); - - #endregion - - internal IntPtr options; - - public OutputOptions() - { - options = nvttCreateOutputOptions(); - //nvttSetOutputOptionsErrorHandler(options, new ErrorHandler(ErrorCallback)); - } - ~OutputOptions() - { - nvttDestroyOutputOptions(options); - } - - public void SetFileName(string fileName) - { - nvttSetOutputOptionsFileName(options, fileName); - } - - public event ErrorHandler Error; - - public void SetOutputHeader(bool b) - { - nvttSetOutputOptionsOutputHeader(options, b); - } - - public void SetOutputHandler(BeginImageDelegate beginImage, WriteDataDelegate writeImage, EndImageDelegate endImage) - { - IntPtr ptrBeginImage = IntPtr.Zero; - IntPtr ptrWriteData = IntPtr.Zero; - IntPtr ptrEndImage = IntPtr.Zero; - - if (beginImage != null || writeImage != null || endImage != null) - { - ptrBeginImage = Marshal.GetFunctionPointerForDelegate(beginImage); - ptrWriteData = Marshal.GetFunctionPointerForDelegate(writeImage); - ptrEndImage = Marshal.GetFunctionPointerForDelegate(endImage); - } - - nvttSetOutputOptionsOutputHandler(options, ptrBeginImage, ptrWriteData, ptrEndImage); - } - } - #endregion - - #region public static class Compressor - public class Compressor - { - #region Bindings - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static IntPtr nvttCreateCompressor(); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttDestroyCompressor(IntPtr compressor); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static bool nvttCompress(IntPtr compressor, IntPtr inputOptions, IntPtr compressionOptions, IntPtr outputOptions); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static int nvttEstimateSize(IntPtr compressor, IntPtr inputOptions, IntPtr compressionOptions); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private static extern IntPtr nvttErrorString(Error error); - - #endregion - - internal IntPtr compressor; - - public Compressor() - { - compressor = nvttCreateCompressor(); - } - - ~Compressor() - { - nvttDestroyCompressor(compressor); - } - - public bool Compress(InputOptions input, CompressionOptions compression, OutputOptions output) - { - return nvttCompress(compressor, input.options, compression.options, output.options); - } - - public int EstimateSize(InputOptions input, CompressionOptions compression) - { - return nvttEstimateSize(compressor, input.options, compression.options); - } - - public static string ErrorString(Error error) - { - return Marshal.PtrToStringAnsi(nvttErrorString(error)); - } - - } - #endregion - - #region public static class Surface - public class Surface - { - #region Bindings - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static IntPtr nvttCreateSurface(); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static IntPtr nvttCreateSurface(IntPtr surface); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttDestroySurface(IntPtr surface); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSurfaceSetWrapMode(IntPtr surface, WrapMode wrapMode); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static WrapMode nvttSurfaceGetWrapMode(IntPtr surface); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSurfaceSetAlphaMode(IntPtr surface, AlphaMode alphaMode); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static AlphaMode nvttSurfaceGetAlphaMode(IntPtr surface); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttSurfaceSetNormalMap(IntPtr surface, bool isNormalMap); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static bool nvttSurfaceGetNormalMap(IntPtr surface); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static int nvttSurfaceGetWidth(IntPtr surface); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static int nvttSurfaceGetHeight(IntPtr surface); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static int nvttSurfaceGetDepth(IntPtr surface); - #endregion - - internal IntPtr surface; - - public Surface() - { - surface = nvttCreateSurface(); - } - - public Surface(Surface s) - { - surface = nvttCreateSurface(surface); - } - - ~Surface() - { - nvttDestroySurface(surface); - } - - #region Properties - public WrapMode WrapMode { - set { nvttSurfaceSetWrapMode(surface, value); } - get { return nvttSurfaceGetWrapMode(surface); } - } - - public AlphaMode AlphaMode { - set { nvttSurfaceSetAlphaMode(surface, value); } - get { return nvttSurfaceGetAlphaMode(surface); } - } - - public bool IsNormalMap - { - set { nvttSurfaceSetNormalMap(surface, value); } - get { return nvttSurfaceGetNormalMap(surface); } - } - - //public bool isNull(); - - public int Width - { - get { return nvttSurfaceGetWidth(surface); } - } - - public int Height - { - get { return nvttSurfaceGetHeight(surface); } - } - - public int Depth - { - get { return nvttSurfaceGetDepth(surface); } - } - #endregion - - //public TextureType type(); - //public int countMipmaps(); - //public int countMipmaps(int min_size); - //public float alphaTestCoverage(float alphaRef = 0.5); - //public float average(int channel, int alpha_channel = -1, float gamma = 2.2f); - //public IntPtr data(); - //public IntPtr channel(int i); - //public void histogram(int channel, float rangeMin, float rangeMax, int binCount, int binPtr[]); - //public void range(int channel, out float rangeMin, out float rangeMax, int alpha_channel = -1, float alpha_ref = 0.f); - - // @@ TODO - } - #endregion - - #region public static class CubeSurface - public class CubeSurface - { - #region Bindings - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static IntPtr nvttCreateCubeSurface(); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static IntPtr nvttCreateCubeSurface(IntPtr surface); - - [DllImport("nvtt"), SuppressUnmanagedCodeSecurity] - private extern static void nvttDestroyCubeSurface(IntPtr surface); - #endregion - - internal IntPtr cubeSurface; - - public CubeSurface() - { - cubeSurface = nvttCreateCubeSurface(); - } - - public CubeSurface(CubeSurface cs) - { - cubeSurface = nvttCreateCubeSurface(cs.cubeSurface); - } - - ~CubeSurface() - { - nvttDestroyCubeSurface(cubeSurface); - } - - - //public bool IsNull(); // @@ Use properties? - //public int EdgeLength(); // @@ Use properties? - //public int CountMipmaps(); // @@ Use properties? - - //public bool Load(String fileName, int mipmap); - //public bool Save(String fileName) const; - - //public Surface & Face(int face); - //public const Surface & Face(int face) const; - - - // @@ TODO - } - #endregion - -} // Nvidia.TextureTools namespace diff --git a/project/vc9/bc6h/bc6h.vcproj b/project/vc9/bc6h/bc6h.vcproj deleted file mode 100755 index ba159ed..0000000 --- a/project/vc9/bc6h/bc6h.vcproj +++ /dev/null @@ -1,308 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/project/vc9/bc7/bc7.vcproj b/project/vc9/bc7/bc7.vcproj deleted file mode 100644 index 4dfdfa7..0000000 --- a/project/vc9/bc7/bc7.vcproj +++ /dev/null @@ -1,340 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/project/vc9/cubemaptest/cubemaptest.vcproj b/project/vc9/cubemaptest/cubemaptest.vcproj deleted file mode 100755 index e0702cc..0000000 --- a/project/vc9/cubemaptest/cubemaptest.vcproj +++ /dev/null @@ -1,328 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/project/vc9/hdrtest/hdrtest.vcproj b/project/vc9/hdrtest/hdrtest.vcproj deleted file mode 100755 index 3299430..0000000 --- a/project/vc9/hdrtest/hdrtest.vcproj +++ /dev/null @@ -1,330 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/project/vc9/imperativeapi/imperativeapi.vcproj b/project/vc9/imperativeapi/imperativeapi.vcproj deleted file mode 100755 index 6799d75..0000000 --- a/project/vc9/imperativeapi/imperativeapi.vcproj +++ /dev/null @@ -1,328 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/project/vc9/nvassemble/nvassemble.rc b/project/vc9/nvassemble/nvassemble.rc deleted file mode 100644 index 842ded1..0000000 Binary files a/project/vc9/nvassemble/nvassemble.rc and /dev/null differ diff --git a/project/vc9/nvassemble/nvassemble.vcproj b/project/vc9/nvassemble/nvassemble.vcproj deleted file mode 100644 index 0821d98..0000000 --- a/project/vc9/nvassemble/nvassemble.vcproj +++ /dev/null @@ -1,370 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/project/vc9/nvassemble/nvidia.ico b/project/vc9/nvassemble/nvidia.ico deleted file mode 100644 index 6aa721e..0000000 Binary files a/project/vc9/nvassemble/nvidia.ico and /dev/null differ diff --git a/project/vc9/nvassemble/resource.h b/project/vc9/nvassemble/resource.h deleted file mode 100644 index e765787..0000000 --- a/project/vc9/nvassemble/resource.h +++ /dev/null @@ -1,16 +0,0 @@ -//{{NO_DEPENDENCIES}} -// Microsoft Visual C++ generated include file. -// Used by nvcompress.rc -// -#define IDI_ICON1 101 - -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NEXT_RESOURCE_VALUE 102 -#define _APS_NEXT_COMMAND_VALUE 40001 -#define _APS_NEXT_CONTROL_VALUE 1000 -#define _APS_NEXT_SYMED_VALUE 101 -#endif -#endif diff --git a/project/vc9/nvcompress/nvcompress.rc b/project/vc9/nvcompress/nvcompress.rc deleted file mode 100644 index 842ded1..0000000 Binary files a/project/vc9/nvcompress/nvcompress.rc and /dev/null differ diff --git a/project/vc9/nvcompress/nvcompress.vcproj b/project/vc9/nvcompress/nvcompress.vcproj deleted file mode 100644 index 812d0e3..0000000 --- a/project/vc9/nvcompress/nvcompress.vcproj +++ /dev/null @@ -1,696 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/project/vc9/nvcompress/nvidia.ico b/project/vc9/nvcompress/nvidia.ico deleted file mode 100644 index 6aa721e..0000000 Binary files a/project/vc9/nvcompress/nvidia.ico and /dev/null differ diff --git a/project/vc9/nvcompress/resource.h b/project/vc9/nvcompress/resource.h deleted file mode 100644 index e765787..0000000 --- a/project/vc9/nvcompress/resource.h +++ /dev/null @@ -1,16 +0,0 @@ -//{{NO_DEPENDENCIES}} -// Microsoft Visual C++ generated include file. -// Used by nvcompress.rc -// -#define IDI_ICON1 101 - -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NEXT_RESOURCE_VALUE 102 -#define _APS_NEXT_COMMAND_VALUE 40001 -#define _APS_NEXT_CONTROL_VALUE 1000 -#define _APS_NEXT_SYMED_VALUE 101 -#endif -#endif diff --git a/project/vc9/nvconfig.h b/project/vc9/nvconfig.h deleted file mode 100644 index b18fcc8..0000000 --- a/project/vc9/nvconfig.h +++ /dev/null @@ -1,22 +0,0 @@ -#ifndef NV_CONFIG -#define NV_CONFIG - -//#cmakedefine HAVE_UNISTD_H -#define HAVE_STDARG_H -//#cmakedefine HAVE_SIGNAL_H -//#cmakedefine HAVE_EXECINFO_H -#define HAVE_MALLOC_H - -#if defined(_OPENMP) -#define HAVE_OPENMP -#endif - -/*#if !defined(_M_X64) -//#define HAVE_FREEIMAGE -#define HAVE_PNG -#define HAVE_JPEG -#define HAVE_TIFF -#endif*/ -#define HAVE_STBIMAGE - -#endif // NV_CONFIG diff --git a/project/vc9/nvcore/nvcore.vcproj b/project/vc9/nvcore/nvcore.vcproj deleted file mode 100644 index 719e96f..0000000 --- a/project/vc9/nvcore/nvcore.vcproj +++ /dev/null @@ -1,408 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/project/vc9/nvddsinfo/nvddsinfo.rc b/project/vc9/nvddsinfo/nvddsinfo.rc deleted file mode 100644 index 842ded1..0000000 Binary files a/project/vc9/nvddsinfo/nvddsinfo.rc and /dev/null differ diff --git a/project/vc9/nvddsinfo/nvddsinfo.vcproj b/project/vc9/nvddsinfo/nvddsinfo.vcproj deleted file mode 100644 index a82870e..0000000 --- a/project/vc9/nvddsinfo/nvddsinfo.vcproj +++ /dev/null @@ -1,370 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/project/vc9/nvddsinfo/nvidia.ico b/project/vc9/nvddsinfo/nvidia.ico deleted file mode 100644 index 6aa721e..0000000 Binary files a/project/vc9/nvddsinfo/nvidia.ico and /dev/null differ diff --git a/project/vc9/nvddsinfo/resource.h b/project/vc9/nvddsinfo/resource.h deleted file mode 100644 index e765787..0000000 --- a/project/vc9/nvddsinfo/resource.h +++ /dev/null @@ -1,16 +0,0 @@ -//{{NO_DEPENDENCIES}} -// Microsoft Visual C++ generated include file. -// Used by nvcompress.rc -// -#define IDI_ICON1 101 - -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NEXT_RESOURCE_VALUE 102 -#define _APS_NEXT_COMMAND_VALUE 40001 -#define _APS_NEXT_CONTROL_VALUE 1000 -#define _APS_NEXT_SYMED_VALUE 101 -#endif -#endif diff --git a/project/vc9/nvdecompress/nvdecompress.rc b/project/vc9/nvdecompress/nvdecompress.rc deleted file mode 100644 index 842ded1..0000000 Binary files a/project/vc9/nvdecompress/nvdecompress.rc and /dev/null differ diff --git a/project/vc9/nvdecompress/nvdecompress.vcproj b/project/vc9/nvdecompress/nvdecompress.vcproj deleted file mode 100644 index b647eb4..0000000 --- a/project/vc9/nvdecompress/nvdecompress.vcproj +++ /dev/null @@ -1,391 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/project/vc9/nvdecompress/nvidia.ico b/project/vc9/nvdecompress/nvidia.ico deleted file mode 100644 index 6aa721e..0000000 Binary files a/project/vc9/nvdecompress/nvidia.ico and /dev/null differ diff --git a/project/vc9/nvdecompress/resource.h b/project/vc9/nvdecompress/resource.h deleted file mode 100644 index e765787..0000000 --- a/project/vc9/nvdecompress/resource.h +++ /dev/null @@ -1,16 +0,0 @@ -//{{NO_DEPENDENCIES}} -// Microsoft Visual C++ generated include file. -// Used by nvcompress.rc -// -#define IDI_ICON1 101 - -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NEXT_RESOURCE_VALUE 102 -#define _APS_NEXT_COMMAND_VALUE 40001 -#define _APS_NEXT_CONTROL_VALUE 1000 -#define _APS_NEXT_SYMED_VALUE 101 -#endif -#endif diff --git a/project/vc9/nvimage/nvimage.vcproj b/project/vc9/nvimage/nvimage.vcproj deleted file mode 100644 index c1197a6..0000000 --- a/project/vc9/nvimage/nvimage.vcproj +++ /dev/null @@ -1,395 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/project/vc9/nvimgdiff/nvidia.ico b/project/vc9/nvimgdiff/nvidia.ico deleted file mode 100644 index 6aa721e..0000000 Binary files a/project/vc9/nvimgdiff/nvidia.ico and /dev/null differ diff --git a/project/vc9/nvimgdiff/nvimgdiff.rc b/project/vc9/nvimgdiff/nvimgdiff.rc deleted file mode 100644 index 842ded1..0000000 Binary files a/project/vc9/nvimgdiff/nvimgdiff.rc and /dev/null differ diff --git a/project/vc9/nvimgdiff/nvimgdiff.vcproj b/project/vc9/nvimgdiff/nvimgdiff.vcproj deleted file mode 100644 index c437aa0..0000000 --- a/project/vc9/nvimgdiff/nvimgdiff.vcproj +++ /dev/null @@ -1,391 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/project/vc9/nvimgdiff/resource.h b/project/vc9/nvimgdiff/resource.h deleted file mode 100644 index e765787..0000000 --- a/project/vc9/nvimgdiff/resource.h +++ /dev/null @@ -1,16 +0,0 @@ -//{{NO_DEPENDENCIES}} -// Microsoft Visual C++ generated include file. -// Used by nvcompress.rc -// -#define IDI_ICON1 101 - -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NEXT_RESOURCE_VALUE 102 -#define _APS_NEXT_COMMAND_VALUE 40001 -#define _APS_NEXT_CONTROL_VALUE 1000 -#define _APS_NEXT_SYMED_VALUE 101 -#endif -#endif diff --git a/project/vc9/nvmath/nvmath.vcproj b/project/vc9/nvmath/nvmath.vcproj deleted file mode 100644 index b998cf0..0000000 --- a/project/vc9/nvmath/nvmath.vcproj +++ /dev/null @@ -1,400 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/project/vc9/nvthread/nvthread.vcproj b/project/vc9/nvthread/nvthread.vcproj deleted file mode 100644 index d156105..0000000 --- a/project/vc9/nvthread/nvthread.vcproj +++ /dev/null @@ -1,344 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/project/vc9/nvtt.sln b/project/vc9/nvtt.sln deleted file mode 100644 index 582783a..0000000 --- a/project/vc9/nvtt.sln +++ /dev/null @@ -1,445 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 10.00 -# Visual Studio 2008 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvtt", "nvtt\nvtt.vcproj", "{1AEB7681-57D8-48EE-813D-5C41CC38B647}" - ProjectSection(ProjectDependencies) = postProject - {CE017322-01FC-4851-9C8B-64E9A8E26C38} = {CE017322-01FC-4851-9C8B-64E9A8E26C38} - {3DD3A43D-C6EA-460F-821B-6C339A03C5BB} = {3DD3A43D-C6EA-460F-821B-6C339A03C5BB} - {F974F34B-AF02-4C88-8E1E-85475094EA78} = {F974F34B-AF02-4C88-8E1E-85475094EA78} - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} = {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} - {4046F392-A18B-4C66-9639-3EABFFF5D531} = {4046F392-A18B-4C66-9639-3EABFFF5D531} - {C33787E3-5564-4834-9FE3-A9020455A669} = {C33787E3-5564-4834-9FE3-A9020455A669} - {50C465FE-B308-42BC-894D-89484482AF06} = {50C465FE-B308-42BC-894D-89484482AF06} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvcompress", "nvcompress\nvcompress.vcproj", "{88079E38-83AA-4E8A-B18A-66A78D1B058B}" - ProjectSection(ProjectDependencies) = postProject - {3DD3A43D-C6EA-460F-821B-6C339A03C5BB} = {3DD3A43D-C6EA-460F-821B-6C339A03C5BB} - {F974F34B-AF02-4C88-8E1E-85475094EA78} = {F974F34B-AF02-4C88-8E1E-85475094EA78} - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} = {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} - {1AEB7681-57D8-48EE-813D-5C41CC38B647} = {1AEB7681-57D8-48EE-813D-5C41CC38B647} - {4046F392-A18B-4C66-9639-3EABFFF5D531} = {4046F392-A18B-4C66-9639-3EABFFF5D531} - {C33787E3-5564-4834-9FE3-A9020455A669} = {C33787E3-5564-4834-9FE3-A9020455A669} - {50C465FE-B308-42BC-894D-89484482AF06} = {50C465FE-B308-42BC-894D-89484482AF06} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvimage", "nvimage\nvimage.vcproj", "{4046F392-A18B-4C66-9639-3EABFFF5D531}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvcore", "nvcore\nvcore.vcproj", "{F143D180-D4C4-4037-B3DE-BE89A21C8D1D}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvmath", "nvmath\nvmath.vcproj", "{50C465FE-B308-42BC-894D-89484482AF06}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "squish", "squish\squish.vcproj", "{CE017322-01FC-4851-9C8B-64E9A8E26C38}" - ProjectSection(ProjectDependencies) = postProject - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} = {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} - {4046F392-A18B-4C66-9639-3EABFFF5D531} = {4046F392-A18B-4C66-9639-3EABFFF5D531} - {50C465FE-B308-42BC-894D-89484482AF06} = {50C465FE-B308-42BC-894D-89484482AF06} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvddsinfo", "nvddsinfo\nvddsinfo.vcproj", "{841B73C5-C679-4EEF-A50A-7D6106642B49}" - ProjectSection(ProjectDependencies) = postProject - {F974F34B-AF02-4C88-8E1E-85475094EA78} = {F974F34B-AF02-4C88-8E1E-85475094EA78} - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} = {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} - {4046F392-A18B-4C66-9639-3EABFFF5D531} = {4046F392-A18B-4C66-9639-3EABFFF5D531} - {C33787E3-5564-4834-9FE3-A9020455A669} = {C33787E3-5564-4834-9FE3-A9020455A669} - {50C465FE-B308-42BC-894D-89484482AF06} = {50C465FE-B308-42BC-894D-89484482AF06} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvdecompress", "nvdecompress\nvdecompress.vcproj", "{75A0527D-BFC9-49C3-B46B-CD1A901D5927}" - ProjectSection(ProjectDependencies) = postProject - {F974F34B-AF02-4C88-8E1E-85475094EA78} = {F974F34B-AF02-4C88-8E1E-85475094EA78} - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} = {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} - {1AEB7681-57D8-48EE-813D-5C41CC38B647} = {1AEB7681-57D8-48EE-813D-5C41CC38B647} - {4046F392-A18B-4C66-9639-3EABFFF5D531} = {4046F392-A18B-4C66-9639-3EABFFF5D531} - {C33787E3-5564-4834-9FE3-A9020455A669} = {C33787E3-5564-4834-9FE3-A9020455A669} - {50C465FE-B308-42BC-894D-89484482AF06} = {50C465FE-B308-42BC-894D-89484482AF06} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvimgdiff", "nvimgdiff\nvimgdiff.vcproj", "{05A59E8B-EA70-4F22-89E8-E0927BA13064}" - ProjectSection(ProjectDependencies) = postProject - {F974F34B-AF02-4C88-8E1E-85475094EA78} = {F974F34B-AF02-4C88-8E1E-85475094EA78} - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} = {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} - {1AEB7681-57D8-48EE-813D-5C41CC38B647} = {1AEB7681-57D8-48EE-813D-5C41CC38B647} - {4046F392-A18B-4C66-9639-3EABFFF5D531} = {4046F392-A18B-4C66-9639-3EABFFF5D531} - {C33787E3-5564-4834-9FE3-A9020455A669} = {C33787E3-5564-4834-9FE3-A9020455A669} - {50C465FE-B308-42BC-894D-89484482AF06} = {50C465FE-B308-42BC-894D-89484482AF06} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvassemble", "nvassemble\nvassemble.vcproj", "{3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}" - ProjectSection(ProjectDependencies) = postProject - {F974F34B-AF02-4C88-8E1E-85475094EA78} = {F974F34B-AF02-4C88-8E1E-85475094EA78} - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} = {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} - {4046F392-A18B-4C66-9639-3EABFFF5D531} = {4046F392-A18B-4C66-9639-3EABFFF5D531} - {C33787E3-5564-4834-9FE3-A9020455A669} = {C33787E3-5564-4834-9FE3-A9020455A669} - {50C465FE-B308-42BC-894D-89484482AF06} = {50C465FE-B308-42BC-894D-89484482AF06} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvzoom", "nvzoom\nvzoom.vcproj", "{51999D3E-EF22-4BDD-965F-4201034D3DCE}" - ProjectSection(ProjectDependencies) = postProject - {F974F34B-AF02-4C88-8E1E-85475094EA78} = {F974F34B-AF02-4C88-8E1E-85475094EA78} - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} = {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} - {4046F392-A18B-4C66-9639-3EABFFF5D531} = {4046F392-A18B-4C66-9639-3EABFFF5D531} - {C33787E3-5564-4834-9FE3-A9020455A669} = {C33787E3-5564-4834-9FE3-A9020455A669} - {50C465FE-B308-42BC-894D-89484482AF06} = {50C465FE-B308-42BC-894D-89484482AF06} - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Nvidia.TextureTools", "Nvidia.TextureTools\Nvidia.TextureTools.csproj", "{CAB55C39-8FA9-4912-98D9-E52669C8911D}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvtt-testsuite", "testsuite\testsuite.vcproj", "{317B694E-B5C1-42A6-956F-FC12B69175A6}" - ProjectSection(ProjectDependencies) = postProject - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} = {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} - {1AEB7681-57D8-48EE-813D-5C41CC38B647} = {1AEB7681-57D8-48EE-813D-5C41CC38B647} - {4046F392-A18B-4C66-9639-3EABFFF5D531} = {4046F392-A18B-4C66-9639-3EABFFF5D531} - EndProjectSection -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{A08D9CB4-C9D8-46EF-A74D-0EAB11FE34C5}" - ProjectSection(SolutionItems) = preProject - nvconfig.h = nvconfig.h - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "imperativeapi", "imperativeapi\imperativeapi.vcproj", "{7DCF280E-702B-49F3-84A7-AE7E146384D6}" - ProjectSection(ProjectDependencies) = postProject - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} = {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} - {1AEB7681-57D8-48EE-813D-5C41CC38B647} = {1AEB7681-57D8-48EE-813D-5C41CC38B647} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bc6h", "bc6h\bc6h.vcproj", "{C33787E3-5564-4834-9FE3-A9020455A669}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nvthread", "nvthread\nvthread.vcproj", "{3DD3A43D-C6EA-460F-821B-6C339A03C5BB}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cubemaptest", "cubemaptest\cubemaptest.vcproj", "{CFB3FEAC-5720-4B16-9D7E-039DB180B641}" - ProjectSection(ProjectDependencies) = postProject - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} = {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} - {1AEB7681-57D8-48EE-813D-5C41CC38B647} = {1AEB7681-57D8-48EE-813D-5C41CC38B647} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "hdrtest", "hdrtest\hdrtest.vcproj", "{E493E368-A4CF-4A8D-99DD-E128CC3A27EF}" - ProjectSection(ProjectDependencies) = postProject - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} = {F143D180-D4C4-4037-B3DE-BE89A21C8D1D} - {1AEB7681-57D8-48EE-813D-5C41CC38B647} = {1AEB7681-57D8-48EE-813D-5C41CC38B647} - {4046F392-A18B-4C66-9639-3EABFFF5D531} = {4046F392-A18B-4C66-9639-3EABFFF5D531} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bc7", "bc7\bc7.vcproj", "{F974F34B-AF02-4C88-8E1E-85475094EA78}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - Debug-CUDA|Win32 = Debug-CUDA|Win32 - Debug-CUDA|x64 = Debug-CUDA|x64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - Release-CUDA|Win32 = Release-CUDA|Win32 - Release-CUDA|x64 = Release-CUDA|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug|Win32.ActiveCfg = Debug|Win32 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug|Win32.Build.0 = Debug|Win32 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug|x64.ActiveCfg = Debug|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug|x64.Build.0 = Debug|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug-CUDA|Win32.ActiveCfg = Debug-CUDA|Win32 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug-CUDA|Win32.Build.0 = Debug-CUDA|Win32 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug-CUDA|x64.ActiveCfg = Debug-CUDA|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Debug-CUDA|x64.Build.0 = Debug-CUDA|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release|Win32.ActiveCfg = Release|Win32 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release|Win32.Build.0 = Release|Win32 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release|x64.ActiveCfg = Release|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release|x64.Build.0 = Release|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release-CUDA|Win32.ActiveCfg = Release-CUDA|Win32 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release-CUDA|Win32.Build.0 = Release-CUDA|Win32 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release-CUDA|x64.ActiveCfg = Release-CUDA|x64 - {1AEB7681-57D8-48EE-813D-5C41CC38B647}.Release-CUDA|x64.Build.0 = Release-CUDA|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug|Win32.ActiveCfg = Debug|Win32 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug|Win32.Build.0 = Debug|Win32 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug|x64.ActiveCfg = Debug|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug|x64.Build.0 = Debug|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug-CUDA|Win32.ActiveCfg = Debug-CUDA|Win32 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug-CUDA|Win32.Build.0 = Debug-CUDA|Win32 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug-CUDA|x64.ActiveCfg = Debug-CUDA|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Debug-CUDA|x64.Build.0 = Debug-CUDA|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release|Win32.ActiveCfg = Release|Win32 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release|Win32.Build.0 = Release|Win32 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release|x64.ActiveCfg = Release|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release|x64.Build.0 = Release|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release-CUDA|Win32.ActiveCfg = Release-CUDA|Win32 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release-CUDA|Win32.Build.0 = Release-CUDA|Win32 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release-CUDA|x64.ActiveCfg = Release-CUDA|x64 - {88079E38-83AA-4E8A-B18A-66A78D1B058B}.Release-CUDA|x64.Build.0 = Release-CUDA|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug|Win32.ActiveCfg = Debug|Win32 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug|Win32.Build.0 = Debug|Win32 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug|x64.ActiveCfg = Debug|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug|x64.Build.0 = Debug|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Debug-CUDA|x64.Build.0 = Debug|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release|Win32.ActiveCfg = Release|Win32 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release|Win32.Build.0 = Release|Win32 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release|x64.ActiveCfg = Release|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release|x64.Build.0 = Release|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release-CUDA|Win32.Build.0 = Release|Win32 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release-CUDA|x64.ActiveCfg = Release|x64 - {4046F392-A18B-4C66-9639-3EABFFF5D531}.Release-CUDA|x64.Build.0 = Release|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug|Win32.ActiveCfg = Debug|Win32 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug|Win32.Build.0 = Debug|Win32 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug|x64.ActiveCfg = Debug|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug|x64.Build.0 = Debug|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Debug-CUDA|x64.Build.0 = Debug|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release|Win32.ActiveCfg = Release|Win32 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release|Win32.Build.0 = Release|Win32 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release|x64.ActiveCfg = Release|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release|x64.Build.0 = Release|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release-CUDA|Win32.Build.0 = Release|Win32 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release-CUDA|x64.ActiveCfg = Release|x64 - {F143D180-D4C4-4037-B3DE-BE89A21C8D1D}.Release-CUDA|x64.Build.0 = Release|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug|Win32.ActiveCfg = Debug|Win32 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug|Win32.Build.0 = Debug|Win32 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug|x64.ActiveCfg = Debug|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug|x64.Build.0 = Debug|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Debug-CUDA|x64.Build.0 = Debug|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Release|Win32.ActiveCfg = Release|Win32 - {50C465FE-B308-42BC-894D-89484482AF06}.Release|Win32.Build.0 = Release|Win32 - {50C465FE-B308-42BC-894D-89484482AF06}.Release|x64.ActiveCfg = Release|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Release|x64.Build.0 = Release|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {50C465FE-B308-42BC-894D-89484482AF06}.Release-CUDA|Win32.Build.0 = Release|Win32 - {50C465FE-B308-42BC-894D-89484482AF06}.Release-CUDA|x64.ActiveCfg = Release|x64 - {50C465FE-B308-42BC-894D-89484482AF06}.Release-CUDA|x64.Build.0 = Release|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug|Win32.ActiveCfg = Debug|Win32 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug|Win32.Build.0 = Debug|Win32 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug|x64.ActiveCfg = Debug|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug|x64.Build.0 = Debug|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Debug-CUDA|x64.Build.0 = Debug|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release|Win32.ActiveCfg = Release|Win32 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release|Win32.Build.0 = Release|Win32 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release|x64.ActiveCfg = Release|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release|x64.Build.0 = Release|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release-CUDA|Win32.Build.0 = Release|Win32 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release-CUDA|x64.ActiveCfg = Release|x64 - {CE017322-01FC-4851-9C8B-64E9A8E26C38}.Release-CUDA|x64.Build.0 = Release|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug|Win32.ActiveCfg = Debug|Win32 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug|Win32.Build.0 = Debug|Win32 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug|x64.ActiveCfg = Debug|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug|x64.Build.0 = Debug|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Debug-CUDA|x64.Build.0 = Debug|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release|Win32.ActiveCfg = Release|Win32 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release|Win32.Build.0 = Release|Win32 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release|x64.ActiveCfg = Release|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release|x64.Build.0 = Release|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release-CUDA|Win32.Build.0 = Release|Win32 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release-CUDA|x64.ActiveCfg = Release|x64 - {841B73C5-C679-4EEF-A50A-7D6106642B49}.Release-CUDA|x64.Build.0 = Release|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug|Win32.ActiveCfg = Debug|Win32 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug|Win32.Build.0 = Debug|Win32 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug|x64.ActiveCfg = Debug|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug|x64.Build.0 = Debug|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Debug-CUDA|x64.Build.0 = Debug|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release|Win32.ActiveCfg = Release|Win32 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release|Win32.Build.0 = Release|Win32 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release|x64.ActiveCfg = Release|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release|x64.Build.0 = Release|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release-CUDA|Win32.Build.0 = Release|Win32 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release-CUDA|x64.ActiveCfg = Release|x64 - {75A0527D-BFC9-49C3-B46B-CD1A901D5927}.Release-CUDA|x64.Build.0 = Release|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug|Win32.ActiveCfg = Debug|Win32 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug|Win32.Build.0 = Debug|Win32 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug|x64.ActiveCfg = Debug|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug|x64.Build.0 = Debug|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Debug-CUDA|x64.Build.0 = Debug|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release|Win32.ActiveCfg = Release|Win32 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release|Win32.Build.0 = Release|Win32 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release|x64.ActiveCfg = Release|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release|x64.Build.0 = Release|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release-CUDA|Win32.Build.0 = Release|Win32 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release-CUDA|x64.ActiveCfg = Release|x64 - {05A59E8B-EA70-4F22-89E8-E0927BA13064}.Release-CUDA|x64.Build.0 = Release|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug|Win32.ActiveCfg = Debug|Win32 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug|Win32.Build.0 = Debug|Win32 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug|x64.ActiveCfg = Debug|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug|x64.Build.0 = Debug|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Debug-CUDA|x64.Build.0 = Debug|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release|Win32.ActiveCfg = Release|Win32 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release|Win32.Build.0 = Release|Win32 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release|x64.ActiveCfg = Release|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release|x64.Build.0 = Release|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release-CUDA|Win32.Build.0 = Release|Win32 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release-CUDA|x64.ActiveCfg = Release|x64 - {3BC6D760-91E8-4FFB-BD0E-F86F367AD8EA}.Release-CUDA|x64.Build.0 = Release|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug|Win32.ActiveCfg = Debug|Win32 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug|Win32.Build.0 = Debug|Win32 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug|x64.ActiveCfg = Debug|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug|x64.Build.0 = Debug|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Debug-CUDA|x64.Build.0 = Debug|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release|Win32.ActiveCfg = Release|Win32 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release|Win32.Build.0 = Release|Win32 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release|x64.ActiveCfg = Release|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release|x64.Build.0 = Release|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release-CUDA|Win32.Build.0 = Release|Win32 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release-CUDA|x64.ActiveCfg = Release|x64 - {51999D3E-EF22-4BDD-965F-4201034D3DCE}.Release-CUDA|x64.Build.0 = Release|x64 - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Debug|Win32.ActiveCfg = Debug|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Debug|Win32.Build.0 = Debug|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Debug|x64.ActiveCfg = Debug|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Debug|x64.Build.0 = Debug|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Debug-CUDA|Win32.ActiveCfg = Debug|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Debug-CUDA|Win32.Build.0 = Debug|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Debug-CUDA|x64.ActiveCfg = Debug|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Debug-CUDA|x64.Build.0 = Debug|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Release|Win32.ActiveCfg = Release|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Release|Win32.Build.0 = Release|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Release|x64.ActiveCfg = Release|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Release|x64.Build.0 = Release|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Release-CUDA|Win32.ActiveCfg = Release|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Release-CUDA|Win32.Build.0 = Release|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Release-CUDA|x64.ActiveCfg = Release|Any CPU - {CAB55C39-8FA9-4912-98D9-E52669C8911D}.Release-CUDA|x64.Build.0 = Release|Any CPU - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Debug|Win32.ActiveCfg = Debug|Win32 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Debug|Win32.Build.0 = Debug|Win32 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Debug|x64.ActiveCfg = Debug|x64 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Debug|x64.Build.0 = Debug|x64 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Debug-CUDA|Win32.ActiveCfg = Debug-CUDA|Win32 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Debug-CUDA|Win32.Build.0 = Debug-CUDA|Win32 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Debug-CUDA|x64.ActiveCfg = Debug-CUDA|x64 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Debug-CUDA|x64.Build.0 = Debug-CUDA|x64 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Release|Win32.ActiveCfg = Release|Win32 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Release|Win32.Build.0 = Release|Win32 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Release|x64.ActiveCfg = Release|x64 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Release|x64.Build.0 = Release|x64 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Release-CUDA|Win32.ActiveCfg = Release-CUDA|Win32 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Release-CUDA|Win32.Build.0 = Release-CUDA|Win32 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Release-CUDA|x64.ActiveCfg = Release-CUDA|x64 - {317B694E-B5C1-42A6-956F-FC12B69175A6}.Release-CUDA|x64.Build.0 = Release-CUDA|x64 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Debug|Win32.ActiveCfg = Debug|Win32 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Debug|Win32.Build.0 = Debug|Win32 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Debug|x64.ActiveCfg = Debug|x64 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Debug|x64.Build.0 = Debug|x64 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Debug-CUDA|x64.Build.0 = Debug|x64 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Release|Win32.ActiveCfg = Release|Win32 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Release|Win32.Build.0 = Release|Win32 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Release|x64.ActiveCfg = Release|x64 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Release|x64.Build.0 = Release|x64 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Release-CUDA|Win32.Build.0 = Release|Win32 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Release-CUDA|x64.ActiveCfg = Release|x64 - {7DCF280E-702B-49F3-84A7-AE7E146384D6}.Release-CUDA|x64.Build.0 = Release|x64 - {C33787E3-5564-4834-9FE3-A9020455A669}.Debug|Win32.ActiveCfg = Debug|Win32 - {C33787E3-5564-4834-9FE3-A9020455A669}.Debug|Win32.Build.0 = Debug|Win32 - {C33787E3-5564-4834-9FE3-A9020455A669}.Debug|x64.ActiveCfg = Debug|x64 - {C33787E3-5564-4834-9FE3-A9020455A669}.Debug|x64.Build.0 = Debug|x64 - {C33787E3-5564-4834-9FE3-A9020455A669}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {C33787E3-5564-4834-9FE3-A9020455A669}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {C33787E3-5564-4834-9FE3-A9020455A669}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {C33787E3-5564-4834-9FE3-A9020455A669}.Debug-CUDA|x64.Build.0 = Debug|x64 - {C33787E3-5564-4834-9FE3-A9020455A669}.Release|Win32.ActiveCfg = Release|Win32 - {C33787E3-5564-4834-9FE3-A9020455A669}.Release|Win32.Build.0 = Release|Win32 - {C33787E3-5564-4834-9FE3-A9020455A669}.Release|x64.ActiveCfg = Release|x64 - {C33787E3-5564-4834-9FE3-A9020455A669}.Release|x64.Build.0 = Release|x64 - {C33787E3-5564-4834-9FE3-A9020455A669}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {C33787E3-5564-4834-9FE3-A9020455A669}.Release-CUDA|Win32.Build.0 = Release|Win32 - {C33787E3-5564-4834-9FE3-A9020455A669}.Release-CUDA|x64.ActiveCfg = Release|x64 - {C33787E3-5564-4834-9FE3-A9020455A669}.Release-CUDA|x64.Build.0 = Release|x64 - {3DD3A43D-C6EA-460F-821B-6C339A03C5BB}.Debug|Win32.ActiveCfg = Debug|Win32 - {3DD3A43D-C6EA-460F-821B-6C339A03C5BB}.Debug|Win32.Build.0 = Debug|Win32 - {3DD3A43D-C6EA-460F-821B-6C339A03C5BB}.Debug|x64.ActiveCfg = Debug|x64 - {3DD3A43D-C6EA-460F-821B-6C339A03C5BB}.Debug|x64.Build.0 = Debug|x64 - {3DD3A43D-C6EA-460F-821B-6C339A03C5BB}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {3DD3A43D-C6EA-460F-821B-6C339A03C5BB}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {3DD3A43D-C6EA-460F-821B-6C339A03C5BB}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {3DD3A43D-C6EA-460F-821B-6C339A03C5BB}.Debug-CUDA|x64.Build.0 = Debug|x64 - {3DD3A43D-C6EA-460F-821B-6C339A03C5BB}.Release|Win32.ActiveCfg = Release|Win32 - {3DD3A43D-C6EA-460F-821B-6C339A03C5BB}.Release|Win32.Build.0 = Release|Win32 - {3DD3A43D-C6EA-460F-821B-6C339A03C5BB}.Release|x64.ActiveCfg = Release|x64 - {3DD3A43D-C6EA-460F-821B-6C339A03C5BB}.Release|x64.Build.0 = Release|x64 - {3DD3A43D-C6EA-460F-821B-6C339A03C5BB}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {3DD3A43D-C6EA-460F-821B-6C339A03C5BB}.Release-CUDA|Win32.Build.0 = Release|Win32 - {3DD3A43D-C6EA-460F-821B-6C339A03C5BB}.Release-CUDA|x64.ActiveCfg = Release|x64 - {3DD3A43D-C6EA-460F-821B-6C339A03C5BB}.Release-CUDA|x64.Build.0 = Release|x64 - {CFB3FEAC-5720-4B16-9D7E-039DB180B641}.Debug|Win32.ActiveCfg = Debug|Win32 - {CFB3FEAC-5720-4B16-9D7E-039DB180B641}.Debug|Win32.Build.0 = Debug|Win32 - {CFB3FEAC-5720-4B16-9D7E-039DB180B641}.Debug|x64.ActiveCfg = Debug|x64 - {CFB3FEAC-5720-4B16-9D7E-039DB180B641}.Debug|x64.Build.0 = Debug|x64 - {CFB3FEAC-5720-4B16-9D7E-039DB180B641}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {CFB3FEAC-5720-4B16-9D7E-039DB180B641}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {CFB3FEAC-5720-4B16-9D7E-039DB180B641}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {CFB3FEAC-5720-4B16-9D7E-039DB180B641}.Debug-CUDA|x64.Build.0 = Debug|x64 - {CFB3FEAC-5720-4B16-9D7E-039DB180B641}.Release|Win32.ActiveCfg = Release|Win32 - {CFB3FEAC-5720-4B16-9D7E-039DB180B641}.Release|Win32.Build.0 = Release|Win32 - {CFB3FEAC-5720-4B16-9D7E-039DB180B641}.Release|x64.ActiveCfg = Release|x64 - {CFB3FEAC-5720-4B16-9D7E-039DB180B641}.Release|x64.Build.0 = Release|x64 - {CFB3FEAC-5720-4B16-9D7E-039DB180B641}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {CFB3FEAC-5720-4B16-9D7E-039DB180B641}.Release-CUDA|Win32.Build.0 = Release|Win32 - {CFB3FEAC-5720-4B16-9D7E-039DB180B641}.Release-CUDA|x64.ActiveCfg = Release|x64 - {CFB3FEAC-5720-4B16-9D7E-039DB180B641}.Release-CUDA|x64.Build.0 = Release|x64 - {E493E368-A4CF-4A8D-99DD-E128CC3A27EF}.Debug|Win32.ActiveCfg = Debug|Win32 - {E493E368-A4CF-4A8D-99DD-E128CC3A27EF}.Debug|Win32.Build.0 = Debug|Win32 - {E493E368-A4CF-4A8D-99DD-E128CC3A27EF}.Debug|x64.ActiveCfg = Debug|x64 - {E493E368-A4CF-4A8D-99DD-E128CC3A27EF}.Debug|x64.Build.0 = Debug|x64 - {E493E368-A4CF-4A8D-99DD-E128CC3A27EF}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {E493E368-A4CF-4A8D-99DD-E128CC3A27EF}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {E493E368-A4CF-4A8D-99DD-E128CC3A27EF}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {E493E368-A4CF-4A8D-99DD-E128CC3A27EF}.Debug-CUDA|x64.Build.0 = Debug|x64 - {E493E368-A4CF-4A8D-99DD-E128CC3A27EF}.Release|Win32.ActiveCfg = Release|Win32 - {E493E368-A4CF-4A8D-99DD-E128CC3A27EF}.Release|Win32.Build.0 = Release|Win32 - {E493E368-A4CF-4A8D-99DD-E128CC3A27EF}.Release|x64.ActiveCfg = Release|x64 - {E493E368-A4CF-4A8D-99DD-E128CC3A27EF}.Release|x64.Build.0 = Release|x64 - {E493E368-A4CF-4A8D-99DD-E128CC3A27EF}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {E493E368-A4CF-4A8D-99DD-E128CC3A27EF}.Release-CUDA|Win32.Build.0 = Release|Win32 - {E493E368-A4CF-4A8D-99DD-E128CC3A27EF}.Release-CUDA|x64.ActiveCfg = Release|x64 - {E493E368-A4CF-4A8D-99DD-E128CC3A27EF}.Release-CUDA|x64.Build.0 = Release|x64 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Debug|Win32.ActiveCfg = Debug|Win32 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Debug|Win32.Build.0 = Debug|Win32 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Debug|x64.ActiveCfg = Debug|x64 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Debug|x64.Build.0 = Debug|x64 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Debug-CUDA|Win32.ActiveCfg = Debug|Win32 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Debug-CUDA|Win32.Build.0 = Debug|Win32 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Debug-CUDA|x64.ActiveCfg = Debug|x64 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Debug-CUDA|x64.Build.0 = Debug|x64 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Release|Win32.ActiveCfg = Release|Win32 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Release|Win32.Build.0 = Release|Win32 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Release|x64.ActiveCfg = Release|x64 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Release|x64.Build.0 = Release|x64 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Release-CUDA|Win32.ActiveCfg = Release|Win32 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Release-CUDA|Win32.Build.0 = Release|Win32 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Release-CUDA|x64.ActiveCfg = Release|x64 - {F974F34B-AF02-4C88-8E1E-85475094EA78}.Release-CUDA|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/project/vc9/nvtt.vsprops b/project/vc9/nvtt.vsprops deleted file mode 100644 index 16ab0a4..0000000 --- a/project/vc9/nvtt.vsprops +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - diff --git a/project/vc9/nvtt/nvtt.rc b/project/vc9/nvtt/nvtt.rc deleted file mode 100644 index 089d1e9..0000000 --- a/project/vc9/nvtt/nvtt.rc +++ /dev/null @@ -1,102 +0,0 @@ -// Microsoft Visual C++ generated resource script. -// -#include "resource.h" - -#define APSTUDIO_READONLY_SYMBOLS -///////////////////////////////////////////////////////////////////////////// -// -// Generated from the TEXTINCLUDE 2 resource. -// -#include "afxres.h" - -///////////////////////////////////////////////////////////////////////////// -#undef APSTUDIO_READONLY_SYMBOLS - -///////////////////////////////////////////////////////////////////////////// -// English (U.S.) resources - -#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) -#ifdef _WIN32 -LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US -#pragma code_page(1252) -#endif //_WIN32 - -#ifdef APSTUDIO_INVOKED -///////////////////////////////////////////////////////////////////////////// -// -// TEXTINCLUDE -// - -1 TEXTINCLUDE -BEGIN - "resource.h\0" -END - -2 TEXTINCLUDE -BEGIN - "#include ""afxres.h""\r\n" - "\0" -END - -3 TEXTINCLUDE -BEGIN - "\r\n" - "\0" -END - -#endif // APSTUDIO_INVOKED - - -///////////////////////////////////////////////////////////////////////////// -// -// Version -// - -VS_VERSION_INFO VERSIONINFO - FILEVERSION 2,1,0,0 - PRODUCTVERSION 2,1,0,0 - FILEFLAGSMASK 0x17L -#ifdef _DEBUG - FILEFLAGS 0x1L -#else - FILEFLAGS 0x0L -#endif - FILEOS 0x4L - FILETYPE 0x2L - FILESUBTYPE 0x0L -BEGIN - BLOCK "StringFileInfo" - BEGIN - BLOCK "040904b0" - BEGIN - VALUE "CompanyName", "NVIDIA Corporation" - VALUE "FileDescription", "NVIDIA Texture Tools Dynamic Link Library" - VALUE "FileVersion", "2, 1, 0, 0" - VALUE "InternalName", "nvtt" - VALUE "LegalCopyright", "Copyright (C) 2007" - VALUE "OriginalFilename", "nvtt.dll" - VALUE "ProductName", "NVIDIA Texture Tools Dynamic Link Library" - VALUE "ProductVersion", "2, 1, 0, 0" - END - END - BLOCK "VarFileInfo" - BEGIN - VALUE "Translation", 0x409, 1200 - END -END - -#endif // English (U.S.) resources -///////////////////////////////////////////////////////////////////////////// - - - -#ifndef APSTUDIO_INVOKED -///////////////////////////////////////////////////////////////////////////// -// -// Generated from the TEXTINCLUDE 3 resource. -// - - -///////////////////////////////////////////////////////////////////////////// -#endif // not APSTUDIO_INVOKED - diff --git a/project/vc9/nvtt/nvtt.vcproj b/project/vc9/nvtt/nvtt.vcproj deleted file mode 100644 index 9f27172..0000000 --- a/project/vc9/nvtt/nvtt.vcproj +++ /dev/null @@ -1,1048 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/project/vc9/nvtt/resource.h b/project/vc9/nvtt/resource.h deleted file mode 100644 index 4df7169..0000000 --- a/project/vc9/nvtt/resource.h +++ /dev/null @@ -1,14 +0,0 @@ -//{{NO_DEPENDENCIES}} -// Microsoft Visual C++ generated include file. -// Used by nvtt.rc - -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NEXT_RESOURCE_VALUE 101 -#define _APS_NEXT_COMMAND_VALUE 40001 -#define _APS_NEXT_CONTROL_VALUE 1001 -#define _APS_NEXT_SYMED_VALUE 101 -#endif -#endif diff --git a/project/vc9/nvzoom/nvidia.ico b/project/vc9/nvzoom/nvidia.ico deleted file mode 100644 index 6aa721e..0000000 Binary files a/project/vc9/nvzoom/nvidia.ico and /dev/null differ diff --git a/project/vc9/nvzoom/nvzoom.rc b/project/vc9/nvzoom/nvzoom.rc deleted file mode 100644 index 842ded1..0000000 Binary files a/project/vc9/nvzoom/nvzoom.rc and /dev/null differ diff --git a/project/vc9/nvzoom/nvzoom.vcproj b/project/vc9/nvzoom/nvzoom.vcproj deleted file mode 100644 index 3bbf22d..0000000 --- a/project/vc9/nvzoom/nvzoom.vcproj +++ /dev/null @@ -1,382 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/project/vc9/nvzoom/resource.h b/project/vc9/nvzoom/resource.h deleted file mode 100644 index e765787..0000000 --- a/project/vc9/nvzoom/resource.h +++ /dev/null @@ -1,16 +0,0 @@ -//{{NO_DEPENDENCIES}} -// Microsoft Visual C++ generated include file. -// Used by nvcompress.rc -// -#define IDI_ICON1 101 - -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NEXT_RESOURCE_VALUE 102 -#define _APS_NEXT_COMMAND_VALUE 40001 -#define _APS_NEXT_CONTROL_VALUE 1000 -#define _APS_NEXT_SYMED_VALUE 101 -#endif -#endif diff --git a/project/vc9/squish/squish.vcproj b/project/vc9/squish/squish.vcproj deleted file mode 100644 index cabeadc..0000000 --- a/project/vc9/squish/squish.vcproj +++ /dev/null @@ -1,349 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/project/vc9/stress/stress.vcproj b/project/vc9/stress/stress.vcproj deleted file mode 100644 index fe687a8..0000000 --- a/project/vc9/stress/stress.vcproj +++ /dev/null @@ -1,207 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/project/vc9/testsuite/testsuite.vcproj b/project/vc9/testsuite/testsuite.vcproj deleted file mode 100644 index 47110c8..0000000 --- a/project/vc9/testsuite/testsuite.vcproj +++ /dev/null @@ -1,665 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -