diff options
Diffstat (limited to 'model.hpp')
| -rw-r--r-- | model.hpp | 9 | 
1 files changed, 6 insertions, 3 deletions
| @@ -27,13 +27,16 @@ struct Model : public Asset {  	void destroy(Device* dev);  	void update_transforms(); -	void render( +	void update_cbuffers(  		Device* dev, -		Arena* a, -		Render_Pass& pass,  		const m4f& transform,  		const m4f& view_projection  	); +	void render( +		Device* dev, +		Arena* a, +		Render_Pass& pass +	);  };  struct Model_Loader : public Asset_Loader { |