blob: 19dc80c4f4f903f8a3512f1712e37524d4b324fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// This file contains includes for common headers used by command buffer server
// files. It is used for pre-compiled header support.
#ifndef GPU_COMMAND_BUFFER_SERVICE_PRECOMPILE_H_
#define GPU_COMMAND_BUFFER_SERVICE_PRECOMPILE_H_
#include <build/build_config.h>
#if defined(OS_WIN)
#include <windows.h>
#endif
#include <assert.h>
#include <algorithm>
#include <map>
#include <vector>
#endif // O3D_CORE_PRECOMPILE_H_
|