Commit Graph

71 Commits

Author SHA1 Message Date
Sean Barrett
2bb4a0accd Fix trailing whitespace 2020-02-02 11:30:27 -08:00
Sean Barrett
7a69424f15 update version numbers 2020-02-02 11:26:50 -08:00
cshesse
a6945cb852
fix possible bug in uniform sample code 2019-12-22 20:39:23 -08:00
Sean Barrett
2c2908f505 update version numbers 2019-03-04 15:08:53 -08:00
Sean Barrett
a0b521fcf2 no warnings when compiling /W3
compiling all test cases and compilers in test.sbm
   Compilers:
     32-bit:
       VS2015
       VS2013
       VS2008
       VC6 (1998)
       clang-cl 9.0.1
     64-bit
       VS2015
       clang-cl 9.0.1
2019-03-04 14:45:06 -08:00
Sean Barrett
c963e40972 update version numbers 2019-02-25 11:48:42 -08:00
Sean Barrett
5fe7fb52f2 various fixes for clang
also fix a comment typo
2019-02-25 11:10:54 -08:00
Sean Barrett
63b59b46b0 update version numbers 2019-02-07 10:03:00 -08:00
luz.paz
622b3adad3 Misc. comment typos
Found via `codespell -q 3`
2018-02-12 14:54:22 -05:00
Sean Barrett
fd912b5d93 version number, doc tweaks 2017-03-03 09:52:42 -08:00
Sean Barrett
98537b7091 Merge branch 'master' of https://github.com/guitarfreak/stb into working 2017-03-03 09:41:01 -08:00
Sean Barrett
e248e30954 change license to public-domain AND mit (based on twitter vote) 2017-03-03 07:53:07 -08:00
guitarfreak
6a29bcf2a1 Update stb_voxel_render.h 2016-10-08 04:23:52 +02:00
guitarfreak
5fcd181fae Update stb_voxel_render.h 2016-10-08 04:10:23 +02:00
guitarfreak
1a31473db8 Added block_selector 2016-10-08 01:59:11 +02:00
Sean Barrett
6e4154737c update version numbers, documentation, and contributors 2016-04-02 04:51:26 -07:00
Sean Barrett
878e8caaa6 Merge branch 'patch-1' of https://github.com/saolsen/stb into working 2016-04-02 02:31:12 -07:00
Craig Donner
ee6978cb68 Slightly modify the public domain license to keep it in the public domain, but make it clear that even when dedications might not be recognized that the code is still usable. Given that this isn't dual-licensing under a different license, I'm hoping this will be acceptable. 2016-02-25 12:55:44 -08:00
Stephen Olsen
d113bea69a typo in shader
Should be mat4 or mat4x4, not mat44
2015-11-04 14:02:33 -06:00
James Hofmann
054d340c8c fix spelling of "Hofmann"
Interesting factoid: my last name has four valid spellings. In Germany, the one I use is apparently the most common, while the other spellings are typical in the United States.
2015-09-13 18:20:06 -07:00
Sean Barrett
9c3e9d63ea add to contributor list 2015-09-13 04:20:00 -07:00
Sean Barrett
6fe9dae224 bump stb_voxel_render version number 2015-09-13 04:19:17 -07:00
Sean Barrett
6a45a88e0f update "DMC doesn't accept struct initializer" patch to be VC6 compliant 2015-09-13 04:14:02 -07:00
James Hofmann
b0d162d829 DMC doesn't accept struct initializer syntax
It expects constants. The long way compiles (but I haven't actually called this function yet)
2015-09-12 05:45:39 -07:00
Ryan Whitworth
85d0adda25 Added public domain license text 2015-08-01 14:59:03 -04:00
Sean Barrett
c1cb414bc6 stb_voxel_render.h version 0.82 2015-08-01 04:17:38 -07:00
Sean Barrett
4ea7744980 fix incorrect tex_overlay2 handling 2015-08-01 04:15:55 -07:00
Sean Barrett
2afb815509 Merge branch 'add_up_down_checks_to_geometry' of https://github.com/friesencr/stb 2015-08-01 04:08:21 -07:00
Sean Barrett
d821fd83f3 Merge branch 'master' into working
Conflicts:
	stb_voxel_render.h
2015-08-01 04:02:00 -07:00
Chris Friesen
9f23eb30be Adds up and down checks to voxel render input.geometry 2015-07-06 21:37:05 -05:00
Sean Barrett
aa89970d6b stb_image.h: fix *comp value when loading PSDs
stb_voxel_render.h: fix STBVOX_CONFIG_OPTIMIZED_VHEIGHT
2015-05-28 22:11:45 -07:00
Sean Barrett
1384715b11 Merge branch 'master' into working 2015-04-13 11:58:26 -07:00
Sean Barrett
7b72651134 add stb_voxel_render to standard compilation tests 2015-04-12 08:59:49 -07:00
Sean Barrett
9534eb2e08 added input.packed_compact for storing most of the major 2/3-bit values in one byte 2015-04-12 01:23:18 -07:00
Sean Barrett
75f69ce5ed clarify what "largest memory usage" case of vheight is 2015-04-11 01:13:46 -07:00
Sean Barrett
6685256560 change STBVOX_MAKE_LIGHTING to STBVOX_MAKE_LIGHTING_EXT so header file
doesn't have to see the config variables (although this way is actually
more bug prone since you can now use the wrong macro)
2015-04-11 01:05:55 -07:00
Sean Barrett
e2b645e4d7 Add vheight documentation;
Add a missing vheight case;
Add STBVOX_CONFIG_VHEIGHT_IN_LIGHTING;
Fix broken STBVOX_CONFIG_ROTATION_IN_LIGHTING that was broken when I incompletely refactored the #define
2015-04-11 01:01:57 -07:00
Sean Barrett
5cc48593d4 Merge branch 'master' of https://github.com/Sofahamster/stb into working
Fix missing types to be 'unsigned char' not 'int'
Fix handling of string constants which are const-char-* on modern compilers

Conflicts:
	stb_voxel_render.h
2015-04-02 15:35:41 -07:00
Sean Barrett
5c4ce8fdf7 add missing types to allow compiling as C++, and use less cache 2015-04-02 15:23:00 -07:00
Thomas Frase
fbdaca8d2c Added some missing ints to make the code compile as C++ with GCC.
Added a few missing consts to remove GCC warnings about deprecated
conversion from string constant to 'char*'
2015-04-02 20:20:30 +02:00
Sean Barrett
cd1d05b389 voxel render 0.78; compile as C++, fix bad #else 2015-04-02 07:08:27 -07:00
Sean Barrett
abf217de52 stb_voxel_render version 0.77 2015-04-01 16:58:49 -07:00
Sean Barrett
fd62364d96 rename static-implementation define to STB_VOXEL_RENDER_STATIC for consistency 2015-04-01 16:57:46 -07:00
Sean Barrett
a1f8eb30c1 Merge branch 'master' of https://github.com/nothings/stb 2015-04-01 16:46:38 -07:00
Sean Barrett
26a342ba2e documentation tweaks 2015-04-01 16:46:30 -07:00
Sean Barrett
70eaad4a88 improve config macro documentation
clarify which config macros are required and which are optional
2015-04-01 16:46:00 -07:00
Sean Barrett
081fd6945c comment tweaks 2015-04-01 06:08:36 -07:00
Sean Barrett
2cbeaa3001 bump to version 0.76; documentation, minor changes to texlerp, other input tweaks 2015-04-01 05:47:36 -07:00
Jesus Fernandez
ebb3b475d7 Build fix
x, y, z members not found because stbvox_default_normals contains arrays not structs.
2015-04-01 11:35:54 +02:00
Miguel Lechón
0ef28d6bb5 I like the word 'implementation'. 2015-04-01 10:04:38 +02:00