aboutsummaryrefslogtreecommitdiffstats
path: root/src/native/d3d/D3dImageComponent.hpp
diff options
context:
space:
mode:
authorChien Yang <[email protected]>2006-10-11 23:47:10 +0000
committerChien Yang <[email protected]>2006-10-11 23:47:10 +0000
commite60078c34fa46c8d6f6cd9577118d8c4c9f4d0ab (patch)
tree3e77165b248307d32e488d2d1415facae6f1a547 /src/native/d3d/D3dImageComponent.hpp
parent1bd8ec8fd2cdb98ef9da7bf9eddfc4855d323a98 (diff)
1) Fixed an exception in clear background.
2) Clean up unwanted d3d code. git-svn-id: https://svn.java.net/svn/j3d-core~svn/trunk@718 ba19aa83-45c5-6ac9-afd3-db810772062c
Diffstat (limited to 'src/native/d3d/D3dImageComponent.hpp')
-rw-r--r--src/native/d3d/D3dImageComponent.hpp53
1 files changed, 0 insertions, 53 deletions
diff --git a/src/native/d3d/D3dImageComponent.hpp b/src/native/d3d/D3dImageComponent.hpp
deleted file mode 100644
index 8226d30..0000000
--- a/src/native/d3d/D3dImageComponent.hpp
+++ /dev/null
@@ -1,53 +0,0 @@
-/*
- * $RCSfile$
- *
- * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved.
- *
- * Use is subject to license terms.
- *
- * $Revision$
- * $Date$
- * $State$
- */
-
-#if !defined(D3DIMAGECOMPONENT_H)
-#define D3DIMAGECOMPONENT_H
-
-#include "StdAfx.h"
-
-class D3dImageComponent {
-public:
-
- LPDIRECT3DTEXTURE9 surf;
- D3dCtx *ctx;
- int hashCode;
- D3dImageComponent *next;
-
- D3dImageComponent();
-
- D3dImageComponent(D3dCtx *ctx, int hashCode,
- LPDIRECT3DTEXTURE9 surf);
-
- ~D3dImageComponent();
-
- VOID init();
-
- static D3dImageComponent* find(D3dImageComponent *list,
- D3dCtx *ctx, int hashCode);
-
- static D3dImageComponent* add(D3dImageComponent *list,
- D3dCtx *ctx, int hashCode,
- LPDIRECT3DTEXTURE9 surf);
-
- static VOID remove(D3dImageComponent *list, D3dCtx *ctx, int hashCode);
- static VOID remove(D3dImageComponent *list, D3dCtx *ctx);
- static VOID remove(D3dImageComponent *list, int hashCode);
- static VOID remove(D3dImageComponent *list, D3dImageComponent *ic);
- static VOID removeAll(D3dImageComponent *list);
-};
-
-/*
- extern D3dImageComponent RasterList;
- extern D3dImageComponent BackgroundImageList;
-*/
-#endif