aboutsummaryrefslogtreecommitdiffstats
path: root/src/native/d3d/CompressedGeometryRetained.cpp
diff options
context:
space:
mode:
authorKevin Rushforth <[email protected]>2004-06-09 04:25:41 +0000
committerKevin Rushforth <[email protected]>2004-06-09 04:25:41 +0000
commit343b658c32a6473c545187c1e276ee5d06c2686a (patch)
treead2606538b7db1c3553c53a79ccccb2ed5b5e4e2 /src/native/d3d/CompressedGeometryRetained.cpp
parent06cebb1e576da6f7222f999ab059dcfa3d8edd39 (diff)
Initial creation of j3d-core-utils sources in CVS repository
git-svn-id: https://svn.java.net/svn/j3d-core~svn/trunk@7 ba19aa83-45c5-6ac9-afd3-db810772062c
Diffstat (limited to 'src/native/d3d/CompressedGeometryRetained.cpp')
-rw-r--r--src/native/d3d/CompressedGeometryRetained.cpp39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/native/d3d/CompressedGeometryRetained.cpp b/src/native/d3d/CompressedGeometryRetained.cpp
new file mode 100644
index 0000000..413b33d
--- /dev/null
+++ b/src/native/d3d/CompressedGeometryRetained.cpp
@@ -0,0 +1,39 @@
+/*
+ * $RCSfile$
+ *
+ * Copyright (c) 2004 Sun Microsystems, Inc. All rights reserved.
+ *
+ * Use is subject to license terms.
+ *
+ * $Revision$
+ * $Date$
+ * $State$
+ */
+
+#include "StdAfx.h"
+
+extern "C" JNIEXPORT
+void JNICALL Java_javax_media_j3d_CompressedGeometryRetained_execute
+ (JNIEnv *env, jobject obj, jlong ctx, jint version, jint bufferType,
+ jint bufferContents, jint renderFlags, jint offset, jint size,
+ jbyteArray geometry)
+{
+ // Not support by D3D, problem should not call this.
+ printf("Error: CompressedGeometryRetained execute should not invoke by D3D");
+}
+
+extern "C" JNIEXPORT
+jboolean JNICALL Java_javax_media_j3d_CompressedGeometryRetained_decompressByRef
+ (JNIEnv *env, jobject obj, jlong ctx)
+{
+ // Not support by D3D
+ return JNI_FALSE ;
+}
+
+extern "C" JNIEXPORT
+jboolean JNICALL Java_javax_media_j3d_CompressedGeometryRetained_decompressHW
+ (JNIEnv *env, jobject obj, jlong ctx, jint majorVersion, jint minorVersion)
+{
+ // Not support by D3D
+ return JNI_FALSE ;
+}