summaryrefslogtreecommitdiffstats
path: root/skia/config/SkUserConfig.h
Commit message (Collapse)AuthorAgeFilesLines
* Upstream the rest of skia diffmichaelbai@chromium.org2012-07-241-6/+7
| | | | | | | | | | | | | | | - Removed use-system-skia for android, as it didn't work now. - Combined multiple android condition into one. BUG= TEST= Review URL: https://chromiumcodereview.appspot.com/10806077 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148156 0039d316-1c4b-4281-b951-d872f2087c98
* Remove the rest of #pragma once in one big CL.ajwong@chromium.org2012-07-111-1/+0
| | | | | | | | | For context see this thread: https://groups.google.com/a/chromium.org/forum/?fromgroups#!topic/chromium-dev/RMcVNGjB4II TBR=thakis,pkasting,jam git-svn-id: svn://svn.chromium.org/chrome/trunk/src@146163 0039d316-1c4b-4281-b951-d872f2087c98
* Use std floorf() instead of custom version to go faster.reed@google.com2012-05-311-9/+3
| | | | | | | | Previously the custom version was chosen to work around bugs with very large floats, but those have been addressed. Review URL: https://chromiumcodereview.appspot.com/10458059 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@139829 0039d316-1c4b-4281-b951-d872f2087c98
* Adding build-time option to enable the tracing of skia events in junov@chromium.org2012-04-031-0/+16
| | | | | | | | | | | chrome://tracing BUG=121208 TEST=None Review URL: http://codereview.chromium.org/9965037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@130469 0039d316-1c4b-4281-b951-d872f2087c98
* Push subsetter code upstreamarthurhsu@chromium.org2011-12-141-1/+2
| | | | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/8921027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114354 0039d316-1c4b-4281-b951-d872f2087c98
* Add defines for skia to use sfntly.arthurhsu@chromium.org2011-07-261-0/+5
| | | | | | | | | | BUG=80907 TEST=none Review URL: http://codereview.chromium.org/7513003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@94042 0039d316-1c4b-4281-b951-d872f2087c98
* enable antialiasing for skia-gpureed@google.com2011-06-061-0/+2
| | | | | | | | | | | | | | | | This fixes hulu.com (yay!) and does not seem to slow down these sites: - fishtank - speedreading - galaxy Note -- I ran DRT locally, but I'm not seeing the failures I would expect... :( Here's what I ran ./third_party/WebKit/Tools/Scripts/new-run-webkit-tests --platform chromium-gpu Review URL: http://codereview.chromium.org/7058070 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@87999 0039d316-1c4b-4281-b951-d872f2087c98
* + This CL pulls in all the PDF code (i.e. we are now compiling the PDF ↵vandebo@chromium.org2011-04-081-0/+21
| | | | | | | | | | | | | | | | | backend on Chrome). + Add a Metafile to contain Skia PDF content. + Add a VectorPlatformDevice for use with the Skia PDF backend. BUG=62889 TEST=NONE Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=80841 Reverted: http://src.chromium.org/viewvc/chrome?view=rev&revision=80857 Review URL: http://codereview.chromium.org/6499024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80873 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 80841 - + This CL pulls in all the PDF code (i.e. we are now ↵vandebo@chromium.org2011-04-071-27/+0
| | | | | | | | | compiling the PDF backend on Chrome).+ Add a Metafile to contain Skia PDF content.+ Add a VectorPlatformDevice for use with the Skia PDF backend.BUG=62889TEST=NONEReview URL: http://codereview.chromium.org/6499024 TBR=vandebo@chromium.org Review URL: http://codereview.chromium.org/6814028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80857 0039d316-1c4b-4281-b951-d872f2087c98
* + This CL pulls in all the PDF code (i.e. we are now compiling the PDF ↵vandebo@chromium.org2011-04-071-0/+27
| | | | | | | | | | | | | | backend on Chrome). + Add a Metafile to contain Skia PDF content. + Add a VectorPlatformDevice for use with the Skia PDF backend. BUG=62889 TEST=NONE Review URL: http://codereview.chromium.org/6499024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80841 0039d316-1c4b-4281-b951-d872f2087c98
* Build skia as a dll in windows multi-dll build. ctguil@chromium.org2011-03-171-2/+2
| | | | | | | | BUG=75686 TEST=none Review URL: http://codereview.chromium.org/6682011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78510 0039d316-1c4b-4281-b951-d872f2087c98
* Roll skia r690:r699.thakis@chromium.org2011-01-171-0/+7
| | | | | | | | | | r692 fixes a valgrind error. r691 brings in optional gradient dithering code for 32bit pixels. Disable this in chrome for now. BUG=41756,69531,69452 TEST=none TBR=reed git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71607 0039d316-1c4b-4281-b951-d872f2087c98
* Turn on SK_USE_FLOATBITS for Skia to force safe float-to-int conversions. ↵senorblanco@google.com2010-07-271-0/+7
| | | | | | | | | | | | | This is a temporary change until Skia supports saturating float->int conversions. [Landed on behalf of wjmaclean] TEST= existing layout tests BUG= WebKit 25645 (https://bugs.webkit.org/show_bug.cgi?id=25645) Review URL: http://codereview.chromium.org/3014039 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53795 0039d316-1c4b-4281-b951-d872f2087c98
* `#pragma once` for app, base, chrome, gfx, ipc, net, skia, viewsthakis@chromium.org2010-07-261-0/+1
| | | | | | | | | BUG=50273 TEST=everything still builds, build is 10% faster on windows, same speed on mac/linux TBR: erg git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53716 0039d316-1c4b-4281-b951-d872f2087c98
* Enable the use of Freetype's emboldening in Chrome/Linux. Skia's is not so ↵senorblanco@chromium.org2010-02-071-0/+4
| | | | | | | | | | | pretty. BUG=http://crbug.com/22360 TEST=fast/encoding/denormalised-voiced-japanese-chars.html Review URL: http://codereview.chromium.org/583001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@38320 0039d316-1c4b-4281-b951-d872f2087c98
* Roll DEPS for skia 451:457. USE_NEW_BUILDER was removed, since it's now ↵senorblanco@chromium.org2009-12-171-3/+0
| | | | | | | | | | | enabled by default in Skia. BUG=none TEST=none Review URL: http://codereview.chromium.org/502057 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34865 0039d316-1c4b-4281-b951-d872f2087c98
* Roll DEPS for Skia 450:451. Enable USE_NEW_BUILDER in Skia. Mark as failingsenorblanco@chromium.org2009-12-041-21/+10
| | | | | | | | | | | | the ~85 layout tests that now need rebaselining (due to slight pixel coverage change). Refactor SkUserConfig.h a tad. Rebaseline unit test VectorCanvasTest.ClippingIntersect. BUG=24646 TEST=none Review URL: http://codereview.chromium.org/464044 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33863 0039d316-1c4b-4281-b951-d872f2087c98
* This change was supposed to go into my Skia 367 merge, but somehow I missed it.senorblanco@chromium.org2009-11-051-4/+0
| | | | | | | | | | | | This will break yet more layout tests, which have been added to test_expectations.txt. They will be rebaselined after a few runs. BUG=9333 TEST=green bots Review URL: http://codereview.chromium.org/258036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31092 0039d316-1c4b-4281-b951-d872f2087c98
* Revert r24085 and r24086, restoring skia asserts to debug-only (test complete).senorblanco@chromium.org2009-08-231-5/+2
| | | | | | | | | | BUG=http://crbug.com/17569 TEST=none TBR=maruel Review URL: http://codereview.chromium.org/173257 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24087 0039d316-1c4b-4281-b951-d872f2087c98
* Captain Ahab seems to have capsized his boat. What a bonehead.senorblanco@chromium.org2009-08-231-1/+1
| | | | | | | | | | (Build fix). BUG=none TEST=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24086 0039d316-1c4b-4281-b951-d872f2087c98
* Captain Ahab here, trying to catch a whale. Temporarily enablingsenorblanco@chromium.org2009-08-231-1/+4
| | | | | | | | | | | | SK_DEBUG for release builds. This will be reverted after a few reliability runs. BUG=http://crbug.com/17569 TEST=None TBR=maruel git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24085 0039d316-1c4b-4281-b951-d872f2087c98
* Reverting 23625 (which enabled SkASSERT in Release builds). We got some goodsenorblanco@chromium.org2009-08-181-9/+2
| | | | | | | | | | | | | stack traces from the reliability bots, which will hopefully let us narrow down this bug some more. BUG=none TEST=none TBR=maruel Review URL: http://codereview.chromium.org/173004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@23642 0039d316-1c4b-4281-b951-d872f2087c98
* This CL temporarily turns on SK_DEBUG in Release builds. The goal issenorblanco@chromium.org2009-08-181-2/+9
| | | | | | | | | | | | to get more useful stack traces from the reliability bots. This CL will be reverted after a few reliability runs. BUG=http://crbug.com/17569 TEST=none Review URL: http://codereview.chromium.org/172094 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@23625 0039d316-1c4b-4281-b951-d872f2087c98
* Enable skia asserts. They were disabled some time ago due tosenorblanco@chromium.org2009-08-101-14/+0
| | | | | | | | | | | | http://crbug.com/6372, which has since been fixed. Some existing asserts were failing due to having been untested, and were fixed in this CL. BUG=http://crbug.com/6373. TEST=unit tests, layout tests, etc do not assert Review URL: http://codereview.chromium.org/165223 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@22916 0039d316-1c4b-4281-b951-d872f2087c98
* Update WebKit to 45111 and Skia to 239amanda@chromium.org2009-06-251-3/+7
| | | | | | Review URL: http://codereview.chromium.org/147121 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19211 0039d316-1c4b-4281-b951-d872f2087c98
* This CL updates chrome to the latest version of skia, retrieved via DEPS, andsenorblanco@chromium.org2009-05-131-0/+222
placed in third_party. All relevant skia changes (for all 3 platforms) have been upstreamed. Most of this CL is mind-numbingly repetitive. Things of interest are: skia.gyp (now points at third_party versions), DEPS, and SkUserConfig.h. stdint.h: Skia now requires C99 integer types, which MSVC doesn't support natively. I have put typedefs in config/win/stdint.h. Note that the new version of skia appears to render rects whose coordinates are "backwards" (ie., x2 < x1 or y2 < y1), which were formerly culled. There were a couple obvious instances of this in the code which I fixed, but there may be more. There were ~35 layout test failures due to minor pixel differences which I rebaselined on Windows and Linux, and 8 genuine failures related to masks and stroked text, which I have put in text_expectations.txt and assigned to myself. (There was another change which broke ~1700 tests on each platform, but I put that change behind an #ifdef for now). R=brettw Review URL: http://codereview.chromium.org/65012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15949 0039d316-1c4b-4281-b951-d872f2087c98