Skip to content

Commit

Permalink
javadoc and comments
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Apr 21, 2024
1 parent 2e47db9 commit ec17af0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
7 changes: 4 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -226,9 +226,10 @@ model {
linker.args 'ws2_32.lib' // for htons()

if (isDebug) {
cppCompiler.args '/FS' // serialize PDB writes
cppCompiler.args '/MTd' // use LIBCMTD
cppCompiler.args '/Zi' // produce PDB file
cppCompiler.args '/FS' // to serialize PDB-file writes
cppCompiler.args '/MTd' // to use LIBCMTD
cppCompiler.args '/Zi' // to generate a PDB file containing debug info
//cppCompiler.args '/Z7' // to embed debug info in OBJ files
linker.args '/DEBUG'
if (buildable) {
String pdbFile = 'build/libs/bulletjme/shared/'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public class MeshCollisionShape extends CollisionShape {
// fields

/**
* if true, use quantized AABB compression (default=true)
* if true, use quantized AABB compression
*/
final private boolean useCompression;
/**
Expand Down
2 changes: 2 additions & 0 deletions src/test/java/TestBvh.java
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,10 @@ public void test020() {
Platform platform = JmeSystem.getPlatform();
switch (platform) {
case Linux64:
// TODO
break;
case MacOSX_ARM64:
// TODO
break;
case Windows64:
Assert.assertEquals(dp ? 2528 : 2480, numBytes);
Expand Down

0 comments on commit ec17af0

Please sign in to comment.