Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(39)

Side by Side Diff: third_party/mesa/MesaLib/src/mesa/main/compiler.h

Issue 10825442: Fix the compile errors for mesa on Android (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/mesa/MesaLib/src/glsl/ir.h ('k') | third_party/mesa/MesaLib/src/mesa/main/debug.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Mesa 3-D graphics library 2 * Mesa 3-D graphics library
3 * Version: 7.5 3 * Version: 7.5
4 * 4 *
5 * Copyright (C) 1999-2008 Brian Paul All Rights Reserved. 5 * Copyright (C) 1999-2008 Brian Paul All Rights Reserved.
6 * Copyright (C) 2009 VMware, Inc. All Rights Reserved. 6 * Copyright (C) 2009 VMware, Inc. All Rights Reserved.
7 * 7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a 8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"), 9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation 10 * to deal in the Software without restriction, including without limitation
(...skipping 27 matching lines...) Expand all
38 #include <ctype.h> 38 #include <ctype.h>
39 #if defined(__alpha__) && defined(CCPML) 39 #if defined(__alpha__) && defined(CCPML)
40 #include <cpml.h> /* use Compaq's Fast Math Library on Alpha */ 40 #include <cpml.h> /* use Compaq's Fast Math Library on Alpha */
41 #else 41 #else
42 #include <math.h> 42 #include <math.h>
43 #endif 43 #endif
44 #include <limits.h> 44 #include <limits.h>
45 #include <stdlib.h> 45 #include <stdlib.h>
46 #include <stdio.h> 46 #include <stdio.h>
47 #include <string.h> 47 #include <string.h>
48 #if defined(__linux__) && defined(__i386__)
49 #include <fpu_control.h>
50 #endif
51 #include <float.h> 48 #include <float.h>
52 #include <stdarg.h> 49 #include <stdarg.h>
53 50
54 51
55 #ifdef __cplusplus 52 #ifdef __cplusplus
56 extern "C" { 53 extern "C" {
57 #endif 54 #endif
58 55
59 56
60 /** 57 /**
(...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after
505 #endif 502 #endif
506 503
507 504
508 505
509 #ifdef __cplusplus 506 #ifdef __cplusplus
510 } 507 }
511 #endif 508 #endif
512 509
513 510
514 #endif /* COMPILER_H */ 511 #endif /* COMPILER_H */
OLDNEW
« no previous file with comments | « third_party/mesa/MesaLib/src/glsl/ir.h ('k') | third_party/mesa/MesaLib/src/mesa/main/debug.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698