aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKevin Rushforth <[email protected]>2006-01-05 21:13:28 +0000
committerKevin Rushforth <[email protected]>2006-01-05 21:13:28 +0000
commit50e3176d34502d013f0e3a3810e8f2d8e96de5dc (patch)
tree587f8ebe9a1d117df827d55f47bbdf88874e67a0 /src
parent12fd40ee0a8c9620e37870c93150ed572de5454d (diff)
1. Include pre-FCS spec license.
2. Move debug print statement in d3d init code to be inside "if (debug)" test git-svn-id: https://svn.java.net/svn/j3d-core~svn/trunk@496 ba19aa83-45c5-6ac9-afd3-db810772062c
Diffstat (limited to 'src')
-rw-r--r--src/classes/build.xml5
-rw-r--r--src/native/d3d/D3dDriverInfo.cpp2
2 files changed, 2 insertions, 5 deletions
diff --git a/src/classes/build.xml b/src/classes/build.xml
index 83c252e..8a81c3c 100644
--- a/src/classes/build.xml
+++ b/src/classes/build.xml
@@ -194,11 +194,8 @@
</target>
<target name="setup-docs">
- <!-- use javadoc.bottom.new once we have the spec license from the JCP PMO -->
- <property name="javadoc.bottom.new"
- value="&lt;font size=&quot;-1&quot;&gt;Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to &lt;a href=&quot;{@docRoot}/LICENSE-SPEC.html&quot;&gt;license terms&lt;/a&gt;."/>
<property name="javadoc.bottom"
- value="&lt;font size=&quot;-1&quot;&gt;Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms."/>
+ value="&lt;font size=&quot;-1&quot;&gt;Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to &lt;a href=&quot;{@docRoot}/LICENSE-SPEC.html&quot;&gt;license terms&lt;/a&gt;."/>
</target>
<target name="docs-jcp" depends="setup-docs">
diff --git a/src/native/d3d/D3dDriverInfo.cpp b/src/native/d3d/D3dDriverInfo.cpp
index 2545455..fdad7a9 100644
--- a/src/native/d3d/D3dDriverInfo.cpp
+++ b/src/native/d3d/D3dDriverInfo.cpp
@@ -331,8 +331,8 @@ VOID D3dDriverInfo::initialize(JNIEnv *env)
LPDIRECT3D9 pD3D = Direct3DCreate9( D3D_SDK_VERSION );
- printf("[Java3D] Using DirectX D3D 9.0 or higher.\n");
if (debug){
+ printf("[Java3D] Using DirectX D3D 9.0 or higher.\n");
printf("[Java3D] DirectX D3D renderer build 1.4.2005.12.30\n");
}
if (pD3D == NULL) {