diff options
author | Kevin Rushforth <[email protected]> | 2005-10-17 22:56:23 +0000 |
---|---|---|
committer | Kevin Rushforth <[email protected]> | 2005-10-17 22:56:23 +0000 |
commit | 356bbf2bd325380e16fd77d34fffd084dc1c0928 (patch) | |
tree | 1d67b61e1a427baa49047341ee825bca9b423553 /src/native/d3d/CompressedGeometryRetained.cpp | |
parent | 68449b2071392af151a75f90610026465c426401 (diff) |
Merged changes from dev-1_4 branch into the main trunk.
NOTE: all 1.4 development will now proceed on the main trunk. The dev-1_4 branch is closed.
git-svn-id: https://svn.java.net/svn/j3d-core~svn/trunk@445 ba19aa83-45c5-6ac9-afd3-db810772062c
Diffstat (limited to 'src/native/d3d/CompressedGeometryRetained.cpp')
-rw-r--r-- | src/native/d3d/CompressedGeometryRetained.cpp | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/src/native/d3d/CompressedGeometryRetained.cpp b/src/native/d3d/CompressedGeometryRetained.cpp deleted file mode 100644 index df44ebb..0000000 --- a/src/native/d3d/CompressedGeometryRetained.cpp +++ /dev/null @@ -1,39 +0,0 @@ -/* - * $RCSfile$ - * - * Copyright (c) 2005 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 ; -} |