summaryrefslogtreecommitdiff
path: root/core/fpdfapi/render/render_int.h
diff options
context:
space:
mode:
authornpm <npm@chromium.org>2016-12-02 14:01:36 -0800
committerCommit bot <commit-bot@chromium.org>2016-12-02 14:01:36 -0800
commit4bed2af0c049bf499dcdb1327a47d40b4c0db92d (patch)
tree04239e723c4d27c02d3edd78e3e93012d517ba6e /core/fpdfapi/render/render_int.h
parent0527ec571a8842b84f5161dc67f8da439e65eb12 (diff)
downloadpdfium-4bed2af0c049bf499dcdb1327a47d40b4c0db92d.tar.xz
Rename fpdf_render_image and fpdf_render_textchromium/2942chromium/2941chromium/2940
Review-Url: https://codereview.chromium.org/2551593002
Diffstat (limited to 'core/fpdfapi/render/render_int.h')
-rw-r--r--core/fpdfapi/render/render_int.h30
1 files changed, 10 insertions, 20 deletions
diff --git a/core/fpdfapi/render/render_int.h b/core/fpdfapi/render/render_int.h
index ca827368bc..5d04fa77bb 100644
--- a/core/fpdfapi/render/render_int.h
+++ b/core/fpdfapi/render/render_int.h
@@ -56,6 +56,8 @@ typedef struct {
int m_ColorKeyMax;
} DIB_COMP_DATA;
+#define FPDF_HUGE_IMAGE_SIZE 60000000
+
class CPDF_DIBSource : public CFX_DIBSource {
public:
CPDF_DIBSource();
@@ -173,25 +175,13 @@ class CPDF_DIBSource : public CFX_DIBSource {
int m_Status;
};
-#define FPDF_HUGE_IMAGE_SIZE 60000000
-class CPDF_DIBTransferFunc : public CFX_FilteredDIB {
- public:
- explicit CPDF_DIBTransferFunc(const CPDF_TransferFunc* pTransferFunc);
- ~CPDF_DIBTransferFunc() override;
-
- // CFX_FilteredDIB
- FXDIB_Format GetDestFormat() override;
- FX_ARGB* GetDestPalette() override;
- void TranslateScanline(const uint8_t* src_buf,
- std::vector<uint8_t>* dest_buf) const override;
- void TranslateDownSamples(uint8_t* dest_buf,
- const uint8_t* src_buf,
- int pixels,
- int Bpp) const override;
-
- const uint8_t* m_RampR;
- const uint8_t* m_RampG;
- const uint8_t* m_RampB;
-};
+CCodec_ScanlineDecoder* FPDFAPI_CreateFlateDecoder(
+ const uint8_t* src_buf,
+ uint32_t src_size,
+ int width,
+ int height,
+ int nComps,
+ int bpc,
+ const CPDF_Dictionary* pParams);
#endif // CORE_FPDFAPI_RENDER_RENDER_INT_H_