xash3d-fwgs/ref_vk/vk_brush.h
Ivan Avdeev eb14e858a6 add transparency for brush models
Doesn't do alpha test yet though.
2021-02-03 12:24:04 -08:00

14 lines
350 B
C

#pragma once
#include "xash3d_types.h"
struct ref_viewpass_s;
struct draw_list_s;
struct model_s;
qboolean VK_BrushInit( void );
void VK_BrushShutdown( void );
qboolean VK_LoadBrushModel( struct model_s *mod, const byte *buffer );
void VK_BrushRender( const struct ref_viewpass_s *rvp, struct draw_list_s *draw_list );
void VK_BrushClear( void );