25 lines
658 B
C++
25 lines
658 B
C++
///////////////////////////////////////////////////////////////////////////////
|
|
// Copyright (C) Microsoft Corporation, 1998.
|
|
//
|
|
// pch.cpp
|
|
//
|
|
// Precompiled header file.
|
|
//
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
#include <windows.h>
|
|
|
|
#include <d3d.h>
|
|
#include <d3dhal.h>
|
|
|
|
#pragma warning( disable: 4056) // fp constant
|
|
#pragma warning( disable: 4244) // fp DOUBLE->FLOAT
|
|
|
|
#include "refrast.hpp" // public interfaces
|
|
#include "clipping.hpp"
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
// end
|