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.
14 lines
394 B
14 lines
394 B
//====== Copyright 1996-2008, Valve Corporation, All rights reserved. =====//
|
|
#ifndef _SHADERAPIFAST_H_
|
|
#define _SHADERAPIFAST_H_
|
|
|
|
#if defined( _PS3 ) || defined( _OSX )
|
|
#include "shaderapidx9/shaderapidx8.h"
|
|
#include "shaderapidx9/shaderapidx8_global.h"
|
|
#define ShaderApiFast( pShaderAPI ) ShaderAPI()
|
|
#else
|
|
#define ShaderApiFast( pShaderAPI ) pShaderAPI
|
|
#endif
|
|
|
|
#endif // _SHADERAPIFAST_H_
|
|
|