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

Side by Side Diff: core/fxge/dib/fx_dib_transform.cpp

Issue 1868533002: Move core/include/fxge to core/fxge/include. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « core/fxge/dib/fx_dib_main.cpp ('k') | core/fxge/freetype/fx_freetype.cpp » ('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 2014 PDFium Authors. All rights reserved. 1 // Copyright 2014 PDFium 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 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 6
7 #include "core/fxge/dib/dib_int.h" 7 #include "core/fxge/dib/dib_int.h"
8 8
9 #include "core/include/fxge/fx_dib.h" 9 #include "core/fxge/include/fx_dib.h"
10 10
11 namespace { 11 namespace {
12 12
13 uint8_t bilinear_interpol(const uint8_t* buf, 13 uint8_t bilinear_interpol(const uint8_t* buf,
14 int row_offset_l, 14 int row_offset_l,
15 int row_offset_r, 15 int row_offset_r,
16 int src_col_l, 16 int src_col_l,
17 int src_col_r, 17 int src_col_r,
18 int res_x, 18 int res_x,
19 int res_y, 19 int res_y,
(...skipping 919 matching lines...) Expand 10 before | Expand all | Expand 10 after
939 } 939 }
940 dest_pos += destBpp; 940 dest_pos += destBpp;
941 } 941 }
942 } 942 }
943 } 943 }
944 } 944 }
945 } 945 }
946 m_Storer.Replace(pTransformed); 946 m_Storer.Replace(pTransformed);
947 return FALSE; 947 return FALSE;
948 } 948 }
OLDNEW
« no previous file with comments | « core/fxge/dib/fx_dib_main.cpp ('k') | core/fxge/freetype/fx_freetype.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698