aboutsummaryrefslogtreecommitdiff
path: root/NvCloth/src/dx/DxSolver.h
diff options
context:
space:
mode:
authorMarijn Tamis <[email protected]>2017-04-28 14:19:07 +0200
committerMarijn Tamis <[email protected]>2017-04-28 14:19:07 +0200
commitb350eb5f4d44e8448115796144375d79438d74ae (patch)
tree8e102e8c28f45a1b87bd335ceee4f33c3d4ee7c2 /NvCloth/src/dx/DxSolver.h
parentAdd visual samples. (diff)
downloadnvcloth-b350eb5f4d44e8448115796144375d79438d74ae.tar.xz
nvcloth-b350eb5f4d44e8448115796144375d79438d74ae.zip
NvCloth 1.1.0 Release. (22041545)
Diffstat (limited to 'NvCloth/src/dx/DxSolver.h')
-rw-r--r--NvCloth/src/dx/DxSolver.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/NvCloth/src/dx/DxSolver.h b/NvCloth/src/dx/DxSolver.h
index cafbfa5..09f523a 100644
--- a/NvCloth/src/dx/DxSolver.h
+++ b/NvCloth/src/dx/DxSolver.h
@@ -55,8 +55,10 @@ class DxSolver : private DxContextLock, public Solver
DxSolver(DxFactory&);
~DxSolver();
- virtual void addCloth(Cloth*);
- virtual void removeCloth(Cloth*);
+ virtual void addCloth(Cloth*) override;
+ virtual void removeCloth(Cloth*) override;
+ virtual int getNumCloths() const override;
+ virtual Cloth * const * getClothList() const override;
// functions executing the simulation work.
virtual bool beginSimulation(float dt);