1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00
Commit graph

252 commits

Author SHA1 Message Date
jules
3e7d305094 A few minor whitespace cleanups. 2014-08-16 21:06:27 +01:00
jules
0bf57ddf0c Added a method RectangleList::ensureStorageAllocated 2014-06-29 18:39:45 +01:00
jules
590cca9776 Added an overload for calling roundToInt with an int. Added a a Point::roundToInt method. 2014-06-14 11:32:02 +01:00
jules
1a2a50f71d Added a version of Path::addEllipse that takes a Rectangle 2014-05-16 17:41:43 +01:00
jules
e1ebe495b4 Added method Path::preallocateSpace(). 2014-03-12 19:41:09 +00:00
jules
8968df0402 Added some centering methods to Rectangle. 2014-02-21 12:51:06 +00:00
jules
7786943593 Added MidiMessage::textMetaEvent method. 2014-02-19 20:37:15 +00:00
jules
b0933193bf Disambiguation in Point::getAngleToPoint 2014-02-19 16:14:37 +00:00
jules
76c8400049 Really minor clean-ups. 2014-01-12 18:06:48 +00:00
jules
5b25b303fb Cleaned up some minor stuff in the GL demo and PathStrokeType. 2014-01-12 15:50:16 +00:00
jules
fc24a63ed1 Added a method Rectangle::withSizeKeepingCentre() 2013-12-07 14:31:52 +00:00
jules
2edec00b55 Removed a few more uses of String::empty. 2013-12-01 23:28:31 +00:00
jules
7b2b7b975b Removed leak detector from RectangleList to avoid problems in DLL build. 2013-11-15 11:32:56 +00:00
jules
41545be958 Added methods for line/rectangle intersection. 2013-11-13 10:26:35 +00:00
jules
863895d107 Minor cleanups. 2013-11-10 17:43:02 +00:00
jules
a53110de06 Big speedup to path rendering on GL/software. 2013-11-07 14:38:59 +00:00
jules
59d719cc26 Increased the gamma of software-rendered fonts. 2013-10-29 21:37:36 +00:00
jules
569fe21e7f Minor tidying. 2013-10-28 13:59:09 +00:00
jules
740cea768c Added some trimming functions to Rectangle. 2013-10-20 20:38:45 +01:00
jules
bb98c00d0d Avoided some pedantic compiler warnings in the audio plugin code. 2013-10-01 11:53:17 +01:00
jules
1c8a03c05e Fix for edgetable rendering. 2013-09-24 23:02:28 +01:00
jules
abd3babc02 Minor optimisations and clean-ups. 2013-09-21 13:41:16 +01:00
jules
9b4566a2f0 Added some Rectangle and Point scaling methods. 2013-09-17 09:38:32 +01:00
jules
fc772941d6 Fixed some pedantic warnings. 2013-09-16 18:47:28 +01:00
jules
435089e89b Updated the UnitTest class to provide a shared, reproducible random seed for each run, to allow failures to be re-created. Also converted a few Strings to StringRefs. 2013-09-11 10:29:48 +01:00
jules
fecba9c31c New class StringRef, to improve performance in function calls that can take either a String or a raw string literal. Modified a few other classes to take advantage of this. 2013-09-09 20:07:17 +01:00
jules
59d8d8172d Replaced the crappy old juce sortArray function with std::sort, which seems to run twice as fast. This greatly speeds up edge table rendering. 2013-09-05 09:46:30 +01:00
jules
a2c95ce4fd Cleaned out and optimised some graphics code. 2013-09-04 13:38:54 +01:00
jules
b09cc5e275 Fix for RectangleList 2013-09-02 14:49:41 +01:00
jules
dbf7053861 New method Graphics::fillRectList(), which performs better (and looks better when scaled) than multiple calls to fillRect or drawVerticalLine. Also fixed DPI detection in Windows. 2013-08-30 18:20:51 +01:00
jules
d28ebfdb36 Stripped out some unnecessary boilerplate includes from juce_graphics. 2013-08-24 10:49:25 +01:00
jules
65c155e372 Added a class ContainerDeletePolicy, to allow custom delete operations on objects held by ScopedPointers or OwnedArrays. Also cleaned away a lot of superfluous includes in juce_core files. 2013-08-23 12:08:31 +01:00
jules
1e3973a212 Doxygen warning fixes and extra comments. 2013-08-21 17:19:47 +01:00
jules
0906f661f6 Correction to AffineTransform::getScaleFactor() 2013-08-14 12:20:26 +01:00
jules
bd3a75e726 Added some more translation methods to AffineTransform, and a couple of methods to Rectangle and RectangleList 2013-08-06 15:24:51 +01:00
jules
29ada09816 Cleaned up some unused variables. 2013-08-01 12:40:50 +01:00
jules
43e53f01b4 Made sure that Rectangle::operator/ can cope with an integer argument. 2013-07-31 15:05:27 +01:00
jules
ed220632ed Minor clean-ups. 2013-07-31 13:16:08 +01:00
jules
69f75c344d Workarounds to get Rectangle<int>::getSmallestIntegerContainer() to work in VC2010 2013-07-30 23:14:01 +01:00
jules
08c9d5d22f EdgeTable performance tuning. 2013-07-30 17:18:04 +01:00
jules
8c7a35addb Fixed some obscure rounding errors in Rectangle. 2013-07-30 17:16:56 +01:00
jules
32c98223ac Refactored some lowlevelgraphicscontext classes to remove duplicated code. 2013-07-30 09:59:03 +01:00
jules
6a6f42ddc9 Workarounds for GCC not understanding friend template classes in RectangleList. 2013-07-29 08:55:55 +01:00
jules
1b9a60e52c Added a templated type to the RectangleList class. If you've used this class and these changes cause syntax errors, all you need to do to your code is to replace "RectangleList" with "RectangleList<int>" and everything will work as it did before. 2013-07-28 18:08:28 +01:00
jules
5b25ac6609 Renamed the swapWithArray methods in the array classes to "swapWith" to be more consistent with other swap method naming, and templated the methods for more flexibility. 2013-07-28 11:31:25 +01:00
jules
7d167aef87 Added a new AffineTransform::scaled method and improved Rectangle::operator*= 2013-07-26 17:19:07 +01:00
jules
072c27d7f4 Renamed Rectangle::transformed to Rectangle::transformedBy, in order to match the method name in Point, and allow easier use of these classes in templates. 2013-07-25 18:13:27 +01:00
jules
cf01cae2ea Changed Rectangle::transformed to use getSmallestIntegerContainer on its result when used on a non-float rectangle type. 2013-07-25 14:28:29 +01:00
jules
b506a13ba2 Documentation fix. 2013-07-22 19:51:32 +01:00
jules
3d74717349 Bit of tidying-up in the Point class, and some spelling fixes in comments. 2013-07-22 13:18:29 +01:00