diff --git a/crnlib/crn_core.cpp b/crnlib/crn_core.cpp index d2d9a1d..6143593 100644 --- a/crnlib/crn_core.cpp +++ b/crnlib/crn_core.cpp @@ -8,7 +8,7 @@ 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"; } // namespace crnlib diff --git a/example1/example1.cpp b/example1/example1.cpp index ee0625c..f6ac785 100644 --- a/example1/example1.cpp +++ b/example1/example1.cpp @@ -33,7 +33,7 @@ const int cDefaultCRNQualityLevel = 128; static int print_usage() { 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("\nModes:\n"); printf("c: Compress to .DDS or .CRN using the crn_compress() func. in crnlib.h\n"); diff --git a/example2/example2.cpp b/example2/example2.cpp index c17baae..003d2f3 100644 --- a/example2/example2.cpp +++ b/example2/example2.cpp @@ -24,7 +24,7 @@ using namespace crnlib; static int print_usage() { 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("\nOptions:\n"); printf("-out filename - Force output filename.\n"); diff --git a/example3/example3.cpp b/example3/example3.cpp index 57855cd..0732feb 100644 --- a/example3/example3.cpp +++ b/example3/example3.cpp @@ -29,7 +29,7 @@ const uint cDXTBlockSize = 4; static int print_usage() { 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("\n"); printf("Note: This simple example is not multithreaded, so it's not going to be\n"); diff --git a/inc/crn_decomp.h b/inc/crn_decomp.h index c1abeb4..b2968e4 100644 --- a/inc/crn_decomp.h +++ b/inc/crn_decomp.h @@ -1,5 +1,5 @@ // 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. // // 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: // 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 // warranty. In no event will the authors be held liable for any damages diff --git a/inc/crnlib.h b/inc/crnlib.h index 5ff59d0..6d0d7b6 100644 --- a/inc/crnlib.h +++ b/inc/crnlib.h @@ -1,5 +1,5 @@ // 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. // // 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: // 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 // warranty. In no event will the authors be held liable for any damages