qskinny/src/nodes/QskColorRamp.h

21 lines
513 B
C
Raw Normal View History

2023-04-06 07:23:37 +00:00
/******************************************************************************
2022-11-16 16:26:50 +00:00
* QSkinny - Copyright (C) 2016 Uwe Rathmann
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"
#include "QskGradient.h"
2022-11-16 16:26:50 +00:00
class QSGTexture;
namespace QskColorRamp
{
QSGTexture* texture( const void* rhi,
const QskGradientStops&, QskGradient::SpreadMode );
2022-11-16 16:26:50 +00:00
}
#endif