6#include "QskColorRamp.h"
7#include "QskRgbValue.h"
8#include "QskInternalMacros.h"
11#include <private/qrhi_p.h>
12#include <private/qsgplaintexture_p.h>
15#include <qcoreapplication.h>
19 class Texture :
public QSGPlainTexture
22 Texture(
const QskGradientStops& stops, QskGradient::SpreadMode spreadMode )
30 const int size = qBound( 256, 2 * stops.count(), 1024 );
31 setImage( QskRgb::colorTable( size, stops ) );
33 const auto wrapMode = this->wrapMode( spreadMode );
35 setHorizontalWrapMode( wrapMode );
36 setVerticalWrapMode( wrapMode );
38 setFiltering( QSGTexture::Linear );
42 static inline QSGTexture::WrapMode wrapMode( QskGradient::SpreadMode spreadMode )
46 case QskGradient::RepeatSpread:
47 return QSGTexture::Repeat;
49 case QskGradient::ReflectSpread:
50 return QSGTexture::MirroredRepeat;
53 return QSGTexture::ClampToEdge;
61 inline bool operator==(
const HashKey& other )
const
63 return rhi == other.rhi && spreadMode == other.spreadMode && stops == other.stops;
67 const QskGradientStops stops;
68 const QskGradient::SpreadMode spreadMode;
71 inline size_t qHash(
const HashKey& key,
size_t seed = 0 )
73 size_t values = seed + key.spreadMode;
75 for (
const auto& stop : key.stops )
84 ~Cache() { qDeleteAll( m_hashTable ); }
86 void cleanupRhi(
const QRhi* );
88 Texture* texture(
const void* rhi,
89 const QskGradientStops&, QskGradient::SpreadMode );
92 QHash< HashKey, Texture* > m_hashTable;
93 QVector< const QRhi* > m_rhiTable;
96 static Cache* s_cache;
99static void qskCleanupCache()
105static void qskCleanupRhi(
const QRhi* rhi )
108 s_cache->cleanupRhi( rhi );
111Texture* Cache::texture(
const void* rhi,
112 const QskGradientStops& stops, QskGradient::SpreadMode spreadMode )
114 const HashKey key { rhi, stops, spreadMode };
116 auto texture = m_hashTable[key];
117 if ( texture ==
nullptr )
119 texture =
new Texture( stops, spreadMode );
120 m_hashTable[ key ] = texture;
122 if ( rhi !=
nullptr )
124 auto myrhi = ( QRhi* )rhi;
126 if ( !m_rhiTable.contains( myrhi ) )
128 myrhi->addCleanupCallback( qskCleanupRhi );
137void Cache::cleanupRhi(
const QRhi* rhi )
139 for (
auto it = m_hashTable.begin(); it != m_hashTable.end(); )
141 if ( it.key().rhi == rhi )
144 it = m_hashTable.erase( it );
152 m_rhiTable.removeAll( rhi );
155QSGTexture* QskColorRamp::texture(
const void* rhi,
156 const QskGradientStops& stops, QskGradient::SpreadMode spreadMode )
158 if ( s_cache ==
nullptr )
160 s_cache =
new Cache();
168 qAddPostRoutine( qskCleanupCache );
171 return s_cache->texture( rhi, stops, spreadMode );