aboutsummaryrefslogtreecommitdiffstats
path: root/src/native/d3d/D3dImageComponent.hpp
diff options
context:
space:
mode:
authorKevin Rushforth <[email protected]>2005-10-17 22:56:23 +0000
committerKevin Rushforth <[email protected]>2005-10-17 22:56:23 +0000
commit356bbf2bd325380e16fd77d34fffd084dc1c0928 (patch)
tree1d67b61e1a427baa49047341ee825bca9b423553 /src/native/d3d/D3dImageComponent.hpp
parent68449b2071392af151a75f90610026465c426401 (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/D3dImageComponent.hpp')
-rw-r--r--src/native/d3d/D3dImageComponent.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/native/d3d/D3dImageComponent.hpp b/src/native/d3d/D3dImageComponent.hpp
index 0fb9743..4abedd3 100644
--- a/src/native/d3d/D3dImageComponent.hpp
+++ b/src/native/d3d/D3dImageComponent.hpp
@@ -18,7 +18,7 @@
class D3dImageComponent {
public:
- LPDIRECT3DTEXTURE8 surf;
+ LPDIRECT3DTEXTURE9 surf;
D3dCtx *ctx;
int hashCode;
D3dImageComponent *next;
@@ -26,7 +26,7 @@ public:
D3dImageComponent();
D3dImageComponent(D3dCtx *ctx, int hashCode,
- LPDIRECT3DTEXTURE8 surf);
+ LPDIRECT3DTEXTURE9 surf);
~D3dImageComponent();
@@ -37,7 +37,7 @@ public:
static D3dImageComponent* add(D3dImageComponent *list,
D3dCtx *ctx, int hashCode,
- LPDIRECT3DTEXTURE8 surf);
+ LPDIRECT3DTEXTURE9 surf);
static VOID remove(D3dImageComponent *list, D3dCtx *ctx, int hashCode);
static VOID remove(D3dImageComponent *list, D3dCtx *ctx);