Changeset 196728 in webkit


Ignore:
Timestamp:
Feb 17, 2016 3:45:01 PM (8 years ago)
Author:
andersca@apple.com
Message:

Remove an unused function
https://bugs.webkit.org/show_bug.cgi?id=154358

Reviewed by Sam Weinig.

  • Platform/cg/CGUtilities.cpp:

(WebKit::paintBitmapContext): Deleted.

  • Platform/cg/CGUtilities.h:
Location:
trunk/Source/WebKit2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r196725 r196728  
     12016-02-17  Anders Carlsson  <andersca@apple.com>
     2
     3        Remove an unused function
     4        https://bugs.webkit.org/show_bug.cgi?id=154358
     5
     6        Reviewed by Sam Weinig.
     7
     8        * Platform/cg/CGUtilities.cpp:
     9        (WebKit::paintBitmapContext): Deleted.
     10        * Platform/cg/CGUtilities.h:
     11
    1122016-02-17  Brady Eidson  <beidson@apple.com>
    213
  • trunk/Source/WebKit2/Platform/cg/CGUtilities.cpp

    r149255 r196728  
    4949}
    5050
    51 void paintBitmapContext(CGContextRef context, CGContextRef bitmapContext, CGFloat scaleFactor, CGPoint destination, CGRect source)
    52 {
    53     RetainPtr<CGImageRef> image = adoptCF(CGBitmapContextCreateImage(bitmapContext));
    54     paintImage(context, image.get(), scaleFactor, destination, source);
    55 }
    56 
    5751} // namespace WebKit
  • trunk/Source/WebKit2/Platform/cg/CGUtilities.h

    r115270 r196728  
    3030
    3131void paintImage(CGContextRef, CGImageRef, CGFloat scaleFactor, CGPoint destination, CGRect source);
    32 void paintBitmapContext(CGContextRef, CGContextRef bitmapContext, CGFloat scaleFactor, CGPoint destination, CGRect source);
    3332
    3433} // namespace WebKit
Note: See TracChangeset for help on using the changeset viewer.