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

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

Issue 1707923002: Expand all paths to be based off pdfium/ directory (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Sort headers Created 4 years, 10 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
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 "dib_int.h" 7 #include "core/src/fxge/dib/dib_int.h"
8 8
9 #include "core/include/fxge/fx_dib.h" 9 #include "core/include/fxge/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,
(...skipping 921 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

Powered by Google App Engine
This is Rietveld 408576698