mirror of
https://github.com/w23/xash3d-fwgs
synced 2024-12-17 06:30:44 +01:00
eb14e858a6
Doesn't do alpha test yet though.
14 lines
350 B
C
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 );
|