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

Side by Side Diff: third_party/mesa/MesaLib/src/mesa/drivers/dri/mach64/mach64_tris.c

Issue 10797029: Enforce all the source files to be encoded in UTF-8. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: vim Created 8 years, 5 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
OLDNEW
1 /* -*- mode: c; c-basic-offset: 3 -*- */ 1 /* -*- mode: c; c-basic-offset: 3 -*- */
2 /* 2 /*
3 * Copyright 2000 Gareth Hughes 3 * Copyright 2000 Gareth Hughes
4 * All Rights Reserved. 4 * All Rights Reserved.
5 * 5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a 6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"), 7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation 8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the 10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions: 11 * Software is furnished to do so, subject to the following conditions:
12 * 12 *
13 * The above copyright notice and this permission notice (including the next 13 * The above copyright notice and this permission notice (including the next
14 * paragraph) shall be included in all copies or substantial portions of the 14 * paragraph) shall be included in all copies or substantial portions of the
15 * Software. 15 * Software.
16 * 16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * GARETH HUGHES BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 20 * GARETH HUGHES BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
21 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 21 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 */ 23 */
24 24
25 /* 25 /*
26 * Authors: 26 * Authors:
27 * Gareth Hughes <gareth@valinux.com> 27 * Gareth Hughes <gareth@valinux.com>
28 * Leif Delgass <ldelgass@retinalburn.net> 28 * Leif Delgass <ldelgass@retinalburn.net>
29 *» José Fonseca <j_r_fonseca@yahoo.co.uk> 29 *» José Fonseca <j_r_fonseca@yahoo.co.uk>
30 */ 30 */
31 31
32 #include "main/glheader.h" 32 #include "main/glheader.h"
33 #include "main/mtypes.h" 33 #include "main/mtypes.h"
34 #include "main/colormac.h" 34 #include "main/colormac.h"
35 #include "main/macros.h" 35 #include "main/macros.h"
36 36
37 #include "swrast/swrast.h" 37 #include "swrast/swrast.h"
38 #include "swrast_setup/swrast_setup.h" 38 #include "swrast_setup/swrast_setup.h"
39 #include "tnl/tnl.h" 39 #include "tnl/tnl.h"
(...skipping 1878 matching lines...) Expand 10 before | Expand all | Expand 10 after
1918 firsttime = 0; 1918 firsttime = 0;
1919 } 1919 }
1920 1920
1921 tnl->Driver.RunPipeline = mach64RunPipeline; 1921 tnl->Driver.RunPipeline = mach64RunPipeline;
1922 tnl->Driver.Render.Start = mach64RenderStart; 1922 tnl->Driver.Render.Start = mach64RenderStart;
1923 tnl->Driver.Render.Finish = mach64RenderFinish; 1923 tnl->Driver.Render.Finish = mach64RenderFinish;
1924 tnl->Driver.Render.PrimitiveNotify = mach64RenderPrimitive; 1924 tnl->Driver.Render.PrimitiveNotify = mach64RenderPrimitive;
1925 tnl->Driver.Render.ResetLineStipple = _swrast_ResetLineStipple; 1925 tnl->Driver.Render.ResetLineStipple = _swrast_ResetLineStipple;
1926 tnl->Driver.Render.BuildVertices = mach64BuildVertices; 1926 tnl->Driver.Render.BuildVertices = mach64BuildVertices;
1927 } 1927 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698