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

Side by Side Diff: cc/raster/texture_compressor_etc1_sse.cc

Issue 1539203002: Switch to standard integer types in cc/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more includes Created 5 years 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
« no previous file with comments | « cc/raster/texture_compressor_etc1_sse.h ('k') | cc/raster/texture_compressor_etc1_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "cc/raster/texture_compressor_etc1_sse.h" 5 #include "cc/raster/texture_compressor_etc1_sse.h"
6 6
7 #include <emmintrin.h> 7 #include <emmintrin.h>
8 #include <stdint.h>
8 9
9 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
10 #include "base/logging.h" 11 #include "base/logging.h"
11 // Using this header for common functions such as Color handling 12 // Using this header for common functions such as Color handling
12 // and codeword table. 13 // and codeword table.
13 #include "cc/raster/texture_compressor_etc1.h" 14 #include "cc/raster/texture_compressor_etc1.h"
14 15
15 namespace cc { 16 namespace cc {
16 17
17 namespace { 18 namespace {
(...skipping 790 matching lines...) Expand 10 before | Expand all | Expand 10 after
808 data.blue = blue; 809 data.blue = blue;
809 data.green = green; 810 data.green = green;
810 811
811 CompressBlock(dst, &data); 812 CompressBlock(dst, &data);
812 } 813 }
813 } 814 }
814 } 815 }
815 } 816 }
816 817
817 } // namespace cc 818 } // namespace cc
OLDNEW
« no previous file with comments | « cc/raster/texture_compressor_etc1_sse.h ('k') | cc/raster/texture_compressor_etc1_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698