mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Add documentation tags
This commit is contained in:
parent
e982c70438
commit
cdbc28c18b
534 changed files with 1531 additions and 72 deletions
|
|
@ -37,6 +37,8 @@ namespace RenderingHelpers
|
|||
|
||||
//==============================================================================
|
||||
/** Holds either a simple integer translation, or an affine transform.
|
||||
|
||||
@tags{Graphics}
|
||||
*/
|
||||
class TranslationOrTransform
|
||||
{
|
||||
|
|
@ -141,7 +143,10 @@ public:
|
|||
};
|
||||
|
||||
//==============================================================================
|
||||
/** Holds a cache of recently-used glyph objects of some type. */
|
||||
/** Holds a cache of recently-used glyph objects of some type.
|
||||
|
||||
@tags{Graphics}
|
||||
*/
|
||||
template <class CachedGlyphType, class RenderTargetType>
|
||||
class GlyphCache : private DeletedAtShutdown
|
||||
{
|
||||
|
|
@ -271,7 +276,10 @@ private:
|
|||
};
|
||||
|
||||
//==============================================================================
|
||||
/** Caches a glyph as an edge-table. */
|
||||
/** Caches a glyph as an edge-table.
|
||||
|
||||
@tags{Graphics}
|
||||
*/
|
||||
template <class RendererType>
|
||||
class CachedGlyphEdgeTable : public ReferenceCountedObject
|
||||
{
|
||||
|
|
@ -311,6 +319,8 @@ public:
|
|||
//==============================================================================
|
||||
/** Calculates the alpha values and positions for rendering the edges of a
|
||||
non-pixel-aligned rectangle.
|
||||
|
||||
@tags{Graphics}
|
||||
*/
|
||||
struct FloatRectangleRasterisingInfo
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue