Chromium Code Reviews| Index: skia/ext/skia_utils_win.h |
| diff --git a/skia/ext/skia_utils_win.h b/skia/ext/skia_utils_win.h |
| index 80cbe54b0e7b394ef565b2f90fddfeea0747856f..bfcbf2619b247810082e5a14b547a7c6289e92af 100644 |
| --- a/skia/ext/skia_utils_win.h |
| +++ b/skia/ext/skia_utils_win.h |
| @@ -60,6 +60,13 @@ SK_API void LoadTransformToDC(HDC dc, const SkMatrix& matrix); |
| SK_API void CopyHDC(HDC source, HDC destination, int x, int y, bool is_opaque, |
| const RECT& src_rect, const SkMatrix& transform); |
| +// Fills in a BITMAPINFOHEADER structure given the bitmap's size. |
| +SK_API void CreateBitmapHeader(int width, int height, BITMAPINFOHEADER* hdr); |
|
f(malita)
2016/07/15 19:04:03
Is this bit related to the current code relocation
|
| + |
| +SK_API HBITMAP CreateHBitmap(int width, int height, bool is_opaque, |
| + HANDLE shared_section = nullptr, |
| + void** data = nullptr); |
| + |
| } // namespace skia |
| #endif // SKIA_EXT_SKIA_UTILS_WIN_H_ |