#include <RendererTypes.h>
Inheritance diagram for TRendererPixelShader:
Public Member Functions | |
virtual void | Duplicate (TRendererPixelShader **dest)=0 |
Duplicate pointer to this object to another one and increase number of references to it. | |
virtual DWORD | GetRefs (void) const =0 |
Returns number of references to this PS. | |
virtual DWORD | AddRefs (void)=0 |
Increases number of references and returns result. | |
virtual DWORD | Release (void)=0 |
Decreases number of references to this PS and return result. |
Pixel shader objects needn't be re-created after device was lost!
Definition at line 1621 of file RendererTypes.h.
|
Increases number of references and returns result.
|
|
Duplicate pointer to this object to another one and increase number of references to it. This method does the same as copying two pointers and increasing number of references with calling AddRefs().
|
|
Returns number of references to this PS.
|
|
Decreases number of references to this PS and return result. If number of references count zero then PS is destroyed via operator delete. After calling this method pointer is invalid and must be set to NULL. |