aboutsummaryrefslogtreecommitdiffstats
path: root/src/native/d3d/D3dUtil.hpp
diff options
context:
space:
mode:
authorChien Yang <[email protected]>2007-03-22 04:33:38 +0000
committerChien Yang <[email protected]>2007-03-22 04:33:38 +0000
commit2eb98ec71dd26765a179b0005898bf63991be0b3 (patch)
tree22de2a56d3710192300f0f45d36f39c73e96e2f9 /src/native/d3d/D3dUtil.hpp
parent9327277a80d538abf0fe638065a22b16be9be8bd (diff)
D3D : Added hardware mipmap support for Texture3D and TextureCubeMap.
git-svn-id: https://svn.java.net/svn/j3d-core~svn/trunk@800 ba19aa83-45c5-6ac9-afd3-db810772062c
Diffstat (limited to 'src/native/d3d/D3dUtil.hpp')
-rw-r--r--src/native/d3d/D3dUtil.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/native/d3d/D3dUtil.hpp b/src/native/d3d/D3dUtil.hpp
index b1a7560..8a00287 100644
--- a/src/native/d3d/D3dUtil.hpp
+++ b/src/native/d3d/D3dUtil.hpp
@@ -154,14 +154,16 @@ extern LPDIRECT3DVOLUMETEXTURE9 createVolumeTexture(D3dCtx *d3dCtx,
jint internalFormat,
jint width,
jint height,
- jint depth);
+ jint depth,
+ jboolean useAutoMipMap);
extern LPDIRECT3DCUBETEXTURE9 createCubeMapTexture(D3dCtx *d3dCtx,
jint numLevels,
jint internalFormat,
jint width,
- jint height);
+ jint height,
+ jboolean useAutoMipMap);
extern void copyDataToSurface(jint format,