22 lines
542 B
C
22 lines
542 B
C
|
/**********************************************************************
|
||
|
* QSkinny - Copyright (C) 2016 Uwe Rathmann
|
||
|
* This file may be used under the terms of the QSkinny License, Version 1.0
|
||
|
*****************************************************************************/
|
||
|
|
||
|
#ifndef QSK_COLOR_RAMP_H
|
||
|
#define QSK_COLOR_RAMP_H
|
||
|
|
||
|
#include "QskGlobal.h"
|
||
|
#include "QskGradientStop.h"
|
||
|
|
||
|
#include <qbrush.h>
|
||
|
|
||
|
class QSGTexture;
|
||
|
|
||
|
namespace QskColorRamp
|
||
|
{
|
||
|
QSGTexture* texture( const void* rhi, const QskGradientStops&, QGradient::Spread );
|
||
|
}
|
||
|
|
||
|
#endif
|