2023-04-06 07:23:37 +00:00
|
|
|
/******************************************************************************
|
2024-01-17 13:31:45 +00:00
|
|
|
* QSkinny - Copyright (C) The authors
|
2023-04-06 07:23:37 +00:00
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
2022-11-16 16:26:50 +00:00
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef QSK_COLOR_RAMP_H
|
|
|
|
#define QSK_COLOR_RAMP_H
|
|
|
|
|
|
|
|
#include "QskGlobal.h"
|
2022-12-01 11:03:36 +00:00
|
|
|
#include "QskGradient.h"
|
2022-11-16 16:26:50 +00:00
|
|
|
|
|
|
|
class QSGTexture;
|
|
|
|
|
|
|
|
namespace QskColorRamp
|
|
|
|
{
|
2022-12-22 10:45:23 +00:00
|
|
|
QSGTexture* texture( const void* rhi,
|
|
|
|
const QskGradientStops&, QskGradient::SpreadMode );
|
2022-11-16 16:26:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|