You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
547 B
27 lines
547 B
5 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//===========================================================================//
|
||
|
|
||
|
#ifndef STUDIO_RENDER_H
|
||
|
#define STUDIO_RENDER_H
|
||
|
#ifdef _WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
|
||
|
extern Vector g_viewtarget;
|
||
|
|
||
|
extern Vector g_flexedverts[];
|
||
|
extern Vector g_flexednorms[];
|
||
|
extern int g_flexages[];
|
||
|
|
||
|
extern DrawModelInfo_t g_DrawModelInfo;
|
||
|
extern DrawModelResults_t g_DrawModelResults;
|
||
|
extern bool g_bDrawModelInfoValid;
|
||
|
|
||
|
|
||
|
#endif // STUDIO_RENDER_H
|