Fixing copyright

This commit is contained in:
Rich Geldreich
2016-06-16 20:08:40 -07:00
parent 97b8233acc
commit 0aea5beeb2
8 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -8,7 +8,7 @@
namespace crnlib namespace crnlib
{ {
const char *g_copyright_str = "Copyright (c) 2010-2016 Binomial LLC"; const char *g_copyright_str = "Copyright (c) 2010-2016 Richard Geldreich, Jr. and Binomial LLC";
const char *g_sig_str = "C8cfRlaorj0wLtnMSxrBJxTC85rho2L9hUZKHcBL"; const char *g_sig_str = "C8cfRlaorj0wLtnMSxrBJxTC85rho2L9hUZKHcBL";
} // namespace crnlib } // namespace crnlib
+1 -1
View File
@@ -1254,7 +1254,7 @@ static bool check_for_option(int argc, char *argv[], const char *pOption)
static void print_title() static void print_title()
{ {
console::printf("crunch: Advanced DXTn Texture Compressor - https://github.com/BinomialLLC/crunch"); console::printf("crunch: Advanced DXTn Texture Compressor - https://github.com/BinomialLLC/crunch");
console::printf("Copyright (c) 2010-2016 Binomial LLC"); console::printf("Copyright (c) 2010-2016 Richard Geldreich, Jr. and Binomial LLC");
console::printf("crnlib version v%u.%02u %s Built %s, %s", CRNLIB_VERSION / 100U, CRNLIB_VERSION % 100U, crnlib_is_x64() ? "x64" : "x86", __DATE__, __TIME__); console::printf("crnlib version v%u.%02u %s Built %s, %s", CRNLIB_VERSION / 100U, CRNLIB_VERSION % 100U, crnlib_is_x64() ? "x64" : "x86", __DATE__, __TIME__);
console::printf(""); console::printf("");
} }
+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-2016 Binomial LLC\n"); printf("Copyright (c) 2010-2016 Richard Geldreich, Jr. and 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-2016 Binomial LLC\n"); printf("Copyright (c) 2010-2016 Richard Geldreich, Jr. and 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");
+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-2016 Binomial LLC // Copyright (c) 2010-2016 Richard Geldreich, Jr. and 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-2016 Binomial LLC // Copyright (c) 2010-2016 Richard Geldreich, Jr. and 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-2016 Binomial LLC // Copyright (c) 2010-2016 Richard Geldreich, Jr. and 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-2016 Binomial LLC // Copyright (c) 2010-2016 Richard Geldreich, Jr. and 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
+1 -1
View File
@@ -1,7 +1,7 @@
crunch/crnlib uses the ZLIB license: crunch/crnlib uses the ZLIB license:
http://opensource.org/licenses/Zlib http://opensource.org/licenses/Zlib
Copyright (c) 2010-2016 Binomial LLC Copyright (c) 2010-2016 Richard Geldreich, Jr. and 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
+1 -1
View File
@@ -1,5 +1,5 @@
crunch/crnlib v1.04 - Advanced DXTn texture compression library crunch/crnlib v1.04 - Advanced DXTn texture compression library
Copyright (C) 2010-2016 Binomial LLC http://binomial.info Copyright (C) 2010-2016 Richard Geldreich, Jr. and Binomial LLC http://binomial.info
For bugs or support contact Binomial <info@binomial.info>. For bugs or support contact Binomial <info@binomial.info>.