diff options
| author | Pietro Gagliardi <[email protected]> | 2014-04-11 21:30:19 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-04-11 21:30:19 -0400 |
| commit | e3fdc76c5bf6b77ce53c8573f05f2d0ae8e33778 (patch) | |
| tree | 7c086b63ecfada242152b25e4898ca82c03b76e7 /common_windows.go | |
| parent | 57088b9787ca7e9e7a6135c0f512c70da91a88f2 (diff) | |
Rewrote Area code on Windows to use alpha-premultiplied RGB and only use GDI functions to do it... and it doesn't quite work right yet.
Diffstat (limited to 'common_windows.go')
| -rw-r--r-- | common_windows.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common_windows.go b/common_windows.go index 522b65a..0c9cf39 100644 --- a/common_windows.go +++ b/common_windows.go @@ -13,6 +13,7 @@ var ( gdi32 = syscall.NewLazyDLL("gdi32.dll") comctl32 *syscall.LazyDLL // comctl32 not defined here; see comctl_windows.go gdiplus = syscall.NewLazyDLL("gdiplus.dll") + msimg32 = syscall.NewLazyDLL("msimg32.dll") ) type _HANDLE uintptr |
