Skip to content

Commit eeeeba7

Browse files
committed
Updating license/copyright
1 parent d2a3948 commit eeeeba7

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

crnlib/crn_core.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
namespace crnlib
1010
{
11-
const char *g_copyright_str = "Copyright (c) 2010-2012 Rich Geldreich and Tenacious Software LLC";
11+
const char *g_copyright_str = "Copyright (c) 2010-2016 Binomial LLC";
1212
const char *g_sig_str = "C8cfRlaorj0wLtnMSxrBJxTC85rho2L9hUZKHcBL";
1313

1414
} // namespace crnlib

example1/example1.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const int cDefaultCRNQualityLevel = 128;
3333
static int print_usage()
3434
{
3535
printf("Description: Simple crnlib API example program.\n");
36-
printf("Copyright (c) 2010-2011 Tenacious Software LLC\n");
36+
printf("Copyright (c) 2010-2016 Binomial LLC\n");
3737
printf("Usage: example1 [mode: i/c/d] [source_file] [options]\n");
3838
printf("\nModes:\n");
3939
printf("c: Compress to .DDS or .CRN using the crn_compress() func. in crnlib.h\n");

example2/example2.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ using namespace crnlib;
2424
static int print_usage()
2525
{
2626
printf("Description: Transcodes .CRN to .DDS files using crn_decomp.h.\n");
27-
printf("Copyright (c) 2010-2011 Tenacious Software LLC\n");
27+
printf("Copyright (c) 2010-2016 Binomial LLC\n");
2828
printf("Usage: example2 [source_file] [options]\n");
2929
printf("\nOptions:\n");
3030
printf("-out filename - Force output filename.\n");

example3/example3.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const uint cDXTBlockSize = 4;
2929
static int print_usage()
3030
{
3131
printf("Description: Simple .DDS DXTn block compression using crnlib.\n");
32-
printf("Copyright (c) 2010-2011 Tenacious Software LLC\n");
32+
printf("Copyright (c) 2010-2016 Binomial LLC\n");
3333
printf("Usage: example3 [source_file] [options]\n");
3434
printf("\n");
3535
printf("Note: This simple example is not multithreaded, so it's not going to be\n");

inc/crn_decomp.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// File: crn_decomp.h - Fast CRN->DXTc texture transcoder header file library
2-
// Copyright (c) 2010-2012 Rich Geldreich and Tenacious Software LLC
2+
// Copyright (c) 2010-2016 Binomial LLC
33
// See Copyright Notice and license at the end of this file.
44
//
55
// This single header file contains *all* of the code necessary to unpack .CRN files to raw DXTn bits.
@@ -4812,7 +4812,7 @@ namespace crnd
48124812
// crn_decomp.h uses the ZLIB license:
48134813
// http://opensource.org/licenses/Zlib
48144814
//
4815-
// Copyright (c) 2010-2012 Rich Geldreich and Tenacious Software LLC
4815+
// Copyright (c) 2010-2016 Binomial LLC
48164816
//
48174817
// This software is provided 'as-is', without any express or implied
48184818
// warranty. In no event will the authors be held liable for any damages

inc/crnlib.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// File: crnlib.h - Advanced DXTn texture compression library.
2-
// Copyright (c) 2010-2012 Rich Geldreich and Tenacious Software LLC
2+
// Copyright (c) 2010-2016 Binomial LLC
33
// See copyright notice and license at the end of this file.
44
//
55
// 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
619619
// crnlib uses the ZLIB license:
620620
// http://opensource.org/licenses/Zlib
621621
//
622-
// Copyright (c) 2010-2012 Rich Geldreich and Tenacious Software LLC
622+
// Copyright (c) 2010-2016 Binomial LLC
623623
//
624624
// This software is provided 'as-is', without any express or implied
625625
// warranty. In no event will the authors be held liable for any damages

0 commit comments

Comments
 (0)