| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2009, Google Inc. | 2 * Copyright 2009, Google Inc. |
| 3 * All rights reserved. | 3 * All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 30 */ | 30 */ |
| 31 | 31 |
| 32 | 32 |
| 33 // This file contains includes for common headers used by command buffer server | 33 // This file contains includes for common headers used by command buffer server |
| 34 // files. It is used for pre-compiled header support. | 34 // files. It is used for pre-compiled header support. |
| 35 | 35 |
| 36 #ifndef GPU_COMMAND_BUFFER_SERVICE_CROSS_PRECOMPILE_H_ | 36 #ifndef GPU_COMMAND_BUFFER_SERVICE_PRECOMPILE_H_ |
| 37 #define GPU_COMMAND_BUFFER_SERVICE_CROSS_PRECOMPILE_H_ | 37 #define GPU_COMMAND_BUFFER_SERVICE_PRECOMPILE_H_ |
| 38 | 38 |
| 39 #include <build/build_config.h> | 39 #include <build/build_config.h> |
| 40 | 40 |
| 41 #if defined(OS_WIN) | 41 #if defined(OS_WIN) |
| 42 #include <windows.h> | 42 #include <windows.h> |
| 43 #endif | 43 #endif |
| 44 | 44 |
| 45 #include <assert.h> | 45 #include <assert.h> |
| 46 #include <algorithm> | 46 #include <algorithm> |
| 47 #include <map> | 47 #include <map> |
| 48 #include <vector> | 48 #include <vector> |
| 49 | 49 |
| 50 #endif // O3D_CORE_CROSS_PRECOMPILE_H_ | 50 #endif // O3D_CORE_PRECOMPILE_H_ |
| OLD | NEW |