Modified source engine (2017) developed by valve and leaked in 2020. Not for commercial purporses
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.
 
 
 
 
 
 

48 lines
1.4 KiB

//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//===========================================================================//
#ifndef GL_RMAIN_H
#define GL_RMAIN_H
#ifdef _WIN32
#pragma once
#endif
#include "mathlib/vector.h"
#include "mathlib/mathlib.h"
extern Frustum_t g_Frustum;
// Cull to the full screen frustum.
inline bool R_CullBox( const Vector& mins, const Vector& maxs )
{
return R_CullBox( mins, maxs, g_Frustum );
}
inline bool R_CullBoxSkipNear( const Vector& mins, const Vector& maxs )
{
return R_CullBoxSkipNear( mins, maxs, g_Frustum );
}
// Draw a rectangle in screenspace. The screen window is (-1,-1) to (1,1).
void R_DrawScreenRect( float left, float top, float right, float bottom );
void R_DrawPortals();
float GetScreenAspect( );
void R_CheckForLightingConfigChanges();
// Methods related to view/projection matrices
void ComputeViewMatrix( VMatrix *pViewMatrix, const Vector &origin, const QAngle &angles );
// NOTE: Projection coordinates are -1->1 in both dimensions
// NOTE: Returns actual aspect ratio used
float ComputeViewMatrices( VMatrix *pWorldToView, VMatrix *pViewToProjection, VMatrix *pWorldToProjection, const CViewSetup &viewSetup );
// NOTE: Screen coordinates go from 0->w, 0->h
void ComputeWorldToScreenMatrix( VMatrix *pWorldToScreen, const VMatrix &worldToProjection, const CViewSetup &viewSetup );
#endif // GL_RMAIN_H