| OLD | NEW |
| 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 "xfa/src/fde/fde_devbasic.h" | 7 #include "xfa/fde/fde_devbasic.h" |
| 8 | 8 |
| 9 #include <cstdint> | 9 #include <cstdint> |
| 10 | 10 |
| 11 #include "xfa/src/fde/fde_brush.h" | 11 #include "xfa/fde/fde_brush.h" |
| 12 | 12 |
| 13 static const FDE_HATCHDATA gs_HatchBitmapData[FDE_HATCHSTYLE_Total] = { | 13 static const FDE_HATCHDATA gs_HatchBitmapData[FDE_HATCHSTYLE_Total] = { |
| 14 {16, | 14 {16, |
| 15 16, | 15 16, |
| 16 { | 16 { |
| 17 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 17 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 18 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 18 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 19 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, | 19 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, |
| 20 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 20 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 21 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | 21 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| (...skipping 519 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 541 0x7c, 0x7c, 0x00, 0x00, 0x38, 0x38, 0x00, 0x00, 0x10, 0x10, 0x00, 0x00, | 541 0x7c, 0x7c, 0x00, 0x00, 0x38, 0x38, 0x00, 0x00, 0x10, 0x10, 0x00, 0x00, |
| 542 0x00, 0x00, 0x00, 0x00, | 542 0x00, 0x00, 0x00, 0x00, |
| 543 }}, | 543 }}, |
| 544 }; | 544 }; |
| 545 FDE_LPCHATCHDATA FDE_DEVGetHatchData(int32_t iHatchStyle) { | 545 FDE_LPCHATCHDATA FDE_DEVGetHatchData(int32_t iHatchStyle) { |
| 546 if (iHatchStyle < FDE_HATCHSTYLE_Min || iHatchStyle > FDE_HATCHSTYLE_Max) { | 546 if (iHatchStyle < FDE_HATCHSTYLE_Min || iHatchStyle > FDE_HATCHSTYLE_Max) { |
| 547 return NULL; | 547 return NULL; |
| 548 } | 548 } |
| 549 return &gs_HatchBitmapData[iHatchStyle]; | 549 return &gs_HatchBitmapData[iHatchStyle]; |
| 550 } | 550 } |
| OLD | NEW |