Updating license/copyright

This commit is contained in:
Rich Geldreich
2016-06-15 23:03:05 -07:00
parent d2a3948ab9
commit eeeeba7e40
6 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -8,7 +8,7 @@
namespace crnlib namespace crnlib
{ {
const char *g_copyright_str = "Copyright (c) 2010-2012 Rich Geldreich and Tenacious Software LLC"; const char *g_copyright_str = "Copyright (c) 2010-2016 Binomial LLC";
const char *g_sig_str = "C8cfRlaorj0wLtnMSxrBJxTC85rho2L9hUZKHcBL"; const char *g_sig_str = "C8cfRlaorj0wLtnMSxrBJxTC85rho2L9hUZKHcBL";
} // namespace crnlib } // namespace crnlib
+1 -1
View File
@@ -33,7 +33,7 @@ const int cDefaultCRNQualityLevel = 128;
static int print_usage() static int print_usage()
{ {
printf("Description: Simple crnlib API example program.\n"); printf("Description: Simple crnlib API example program.\n");
printf("Copyright (c) 2010-2011 Tenacious Software LLC\n"); printf("Copyright (c) 2010-2016 Binomial LLC\n");
printf("Usage: example1 [mode: i/c/d] [source_file] [options]\n"); printf("Usage: example1 [mode: i/c/d] [source_file] [options]\n");
printf("\nModes:\n"); printf("\nModes:\n");
printf("c: Compress to .DDS or .CRN using the crn_compress() func. in crnlib.h\n"); printf("c: Compress to .DDS or .CRN using the crn_compress() func. in crnlib.h\n");
+1 -1
View File
@@ -24,7 +24,7 @@ using namespace crnlib;
static int print_usage() static int print_usage()
{ {
printf("Description: Transcodes .CRN to .DDS files using crn_decomp.h.\n"); printf("Description: Transcodes .CRN to .DDS files using crn_decomp.h.\n");
printf("Copyright (c) 2010-2011 Tenacious Software LLC\n"); printf("Copyright (c) 2010-2016 Binomial LLC\n");
printf("Usage: example2 [source_file] [options]\n"); printf("Usage: example2 [source_file] [options]\n");
printf("\nOptions:\n"); printf("\nOptions:\n");
printf("-out filename - Force output filename.\n"); printf("-out filename - Force output filename.\n");
+1 -1
View File
@@ -29,7 +29,7 @@ const uint cDXTBlockSize = 4;
static int print_usage() static int print_usage()
{ {
printf("Description: Simple .DDS DXTn block compression using crnlib.\n"); printf("Description: Simple .DDS DXTn block compression using crnlib.\n");
printf("Copyright (c) 2010-2011 Tenacious Software LLC\n"); printf("Copyright (c) 2010-2016 Binomial LLC\n");
printf("Usage: example3 [source_file] [options]\n"); printf("Usage: example3 [source_file] [options]\n");
printf("\n"); printf("\n");
printf("Note: This simple example is not multithreaded, so it's not going to be\n"); printf("Note: This simple example is not multithreaded, so it's not going to be\n");
+2 -2
View File
@@ -1,5 +1,5 @@
// File: crn_decomp.h - Fast CRN->DXTc texture transcoder header file library // File: crn_decomp.h - Fast CRN->DXTc texture transcoder header file library
// Copyright (c) 2010-2012 Rich Geldreich and Tenacious Software LLC // Copyright (c) 2010-2016 Binomial LLC
// See Copyright Notice and license at the end of this file. // See Copyright Notice and license at the end of this file.
// //
// This single header file contains *all* of the code necessary to unpack .CRN files to raw DXTn bits. // This single header file contains *all* of the code necessary to unpack .CRN files to raw DXTn bits.
@@ -4812,7 +4812,7 @@ namespace crnd
// crn_decomp.h uses the ZLIB license: // crn_decomp.h uses the ZLIB license:
// http://opensource.org/licenses/Zlib // http://opensource.org/licenses/Zlib
// //
// Copyright (c) 2010-2012 Rich Geldreich and Tenacious Software LLC // Copyright (c) 2010-2016 Binomial LLC
// //
// This software is provided 'as-is', without any express or implied // This software is provided 'as-is', without any express or implied
// warranty. In no event will the authors be held liable for any damages // warranty. In no event will the authors be held liable for any damages
+2 -2
View File
@@ -1,5 +1,5 @@
// File: crnlib.h - Advanced DXTn texture compression library. // File: crnlib.h - Advanced DXTn texture compression library.
// Copyright (c) 2010-2012 Rich Geldreich and Tenacious Software LLC // Copyright (c) 2010-2016 Binomial LLC
// See copyright notice and license at the end of this file. // See copyright notice and license at the end of this file.
// //
// This header file contains the public crnlib declarations for DXTn, // This header file contains the public crnlib declarations for DXTn,
@@ -619,7 +619,7 @@ bool crn_decompress_block(const void *pSrc_block, crn_uint32 *pDst_pixels, crn_f
// crnlib uses the ZLIB license: // crnlib uses the ZLIB license:
// http://opensource.org/licenses/Zlib // http://opensource.org/licenses/Zlib
// //
// Copyright (c) 2010-2012 Rich Geldreich and Tenacious Software LLC // Copyright (c) 2010-2016 Binomial LLC
// //
// This software is provided 'as-is', without any express or implied // This software is provided 'as-is', without any express or implied
// warranty. In no event will the authors be held liable for any damages // warranty. In no event will the authors be held liable for any damages