Based on the build logs also seems like cpdf_scaledrenderbuffer.cpp needs an update to remove the scale arg.
CPDF_DeviceBuffer::CalculateMatrix() as well.nit: maybe another newline between content and change-id? Keeping it as is fine as well I just feel the newline looks cleaner.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Based on the build logs also seems like cpdf_scaledrenderbuffer.cpp needs an update to remove the scale arg.
Done
nit: maybe another newline between content and change-id? Keeping it as is fine as well I just feel the newline looks cleaner.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
virtual int GetHorzSize() const;should these be pure virtuals?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
virtual int GetHorzSize() const;should these be pure virtuals?
Just eyeballing, but I think that means the AGG and Skia drivers have to implement them for Windows.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
virtual int GetHorzSize() const;Lei Zhangshould these be pure virtuals?
Just eyeballing, but I think that means the AGG and Skia drivers have to implement them for Windows.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +2 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
3 is the latest approved patch-set.
No files were changed between the latest approved patch-set and the submitted one.
Make CFX_RenderDevice::Get{Horz,Vert}Size() Windows-only
CFX_RenderDevice::GetHorzSize() and GetVertSize() are only useful on
Windows, since only Windows-specific RenderDeviceDriverIface overrides
for these 2 methods return non-zero values. On other platforms, they
only return 0, so the only caller in CPDF_DeviceBuffer can effectively
not call them and get the same result. With these CFX_RenderDevice
marked as Windows-only, also mark the RenderDeviceDriverIface() methods
with the same names as Windows-only. Then slightly simplify
CPDF_DeviceBuffer::CalculateMatrix() as well.| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |