aboutsummaryrefslogtreecommitdiff
path: root/mp/src/public/engine/ivmodelrender.h
diff options
context:
space:
mode:
authorJoe Ludwig <[email protected]>2013-09-03 16:02:10 -0700
committerJoe Ludwig <[email protected]>2013-09-03 16:02:10 -0700
commit1524321396a91ef9fa1f19b4873e53e2c5d9e50a (patch)
tree0a325cd0214ebd656ec414dd0d7597d2c8b883f9 /mp/src/public/engine/ivmodelrender.h
parentGeneral: (diff)
downloadsource-sdk-2013-1524321396a91ef9fa1f19b4873e53e2c5d9e50a.tar.xz
source-sdk-2013-1524321396a91ef9fa1f19b4873e53e2c5d9e50a.zip
* Fixed Source Mod back-compatability by reordering methods in a couple interfaces.
* Added missing singleplayer OSX libs * Updated vpc and libs.
Diffstat (limited to 'mp/src/public/engine/ivmodelrender.h')
-rw-r--r--mp/src/public/engine/ivmodelrender.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/mp/src/public/engine/ivmodelrender.h b/mp/src/public/engine/ivmodelrender.h
index 5b60d893..56aea6c2 100644
--- a/mp/src/public/engine/ivmodelrender.h
+++ b/mp/src/public/engine/ivmodelrender.h
@@ -138,8 +138,6 @@ public:
// radius of the decal to create.
virtual void AddDecal( ModelInstanceHandle_t handle, Ray_t const& ray,
Vector const& decalUp, int decalIndex, int body, bool noPokeThru = false, int maxLODToDecal = ADDDECAL_TO_ALL_LODS ) = 0;
- virtual void AddColoredDecal( ModelInstanceHandle_t handle, Ray_t const& ray,
- Vector const& decalUp, int decalIndex, int body, Color cColor, bool noPokeThru = false, int maxLODToDecal = ADDDECAL_TO_ALL_LODS ) = 0;
// Removes all the decals on a model instance
virtual void RemoveAllDecals( ModelInstanceHandle_t handle ) = 0;
@@ -176,6 +174,9 @@ public:
virtual void SuppressEngineLighting( bool bSuppress ) = 0;
virtual void SetupColorMeshes( int nTotalVerts ) = 0;
+
+ virtual void AddColoredDecal( ModelInstanceHandle_t handle, Ray_t const& ray,
+ Vector const& decalUp, int decalIndex, int body, Color cColor, bool noPokeThru = false, int maxLODToDecal = ADDDECAL_TO_ALL_LODS ) = 0;
};