2022-11-16 17:26:50 +01:00
|
|
|
/**********************************************************************
|
|
|
|
* 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"
|
2022-12-01 12:03:36 +01:00
|
|
|
#include "QskGradient.h"
|
2022-11-16 17:26:50 +01:00
|
|
|
|
|
|
|
class QSGTexture;
|
|
|
|
|
|
|
|
namespace QskColorRamp
|
|
|
|
{
|
2022-12-22 11:45:23 +01:00
|
|
|
QSGTexture* texture( const void* rhi,
|
|
|
|
const QskGradientStops&, QskGradient::SpreadMode );
|
2022-11-16 17:26:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|