mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-29 08:15:44 +00:00
Implement Singlepass Terrain Render
This commit is contained in:
parent
49a8c0ad36
commit
87dd7ffc4a
35 changed files with 1658 additions and 951 deletions
|
|
@ -110,6 +110,21 @@ public:
|
|||
virtual void print( Stream &stream );
|
||||
};
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
/*!
|
||||
Accesses the given index on the variable
|
||||
*/
|
||||
//----------------------------------------------------------------------------
|
||||
class IndexOp : public ShaderOp
|
||||
{
|
||||
typedef ShaderOp Parent;
|
||||
U32 mIndex;
|
||||
|
||||
public:
|
||||
IndexOp( Var* var, U32 index );
|
||||
virtual void print( Stream &stream );
|
||||
};
|
||||
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
/*!
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue