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.
22 lines
488 B
22 lines
488 B
//----------------------------------------------------------------------------
|
|
//
|
|
// rast.h
|
|
//
|
|
// Umbrella header file for the rasterizers.
|
|
//
|
|
// Copyright (C) Microsoft Corporation, 1997.
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#ifndef _RAST_H_
|
|
#define _RAST_H_
|
|
|
|
#ifndef DllExport
|
|
#define DllExport __declspec( dllexport )
|
|
#endif
|
|
|
|
#include <d3ditype.h>
|
|
#include <d3dutil.h>
|
|
#include <span.h>
|
|
|
|
#endif // #ifndef _RAST_H_
|