Get the latest Blender, older versions, or experimental builds.
Stay up-to-date with the new features in the latest Blender releases.
Access production assets and knowledge from the open movies.
Documentation on the usage and features in Blender.
Latest development updates, by Blender developers.
Guidelines, release notes and development docs.
A platform to collect and share results of the Blender Benchmark.
The yearly event that brings the community together.
Support core development with a monthly contribution.
Perform a single donation with more payment options available.
Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
/* SPDX-License-Identifier: GPL-2.0-or-later
* Copyright 2001-2002 NaN Holding BV. All rights reserved. */
/** \file
* \ingroup render
*/
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
#define BRICONT \
texres->tin = (texres->tin - 0.5f) * tex->contrast + tex->bright - 0.5f; \
if (!(tex->flag & TEX_NO_CLAMP)) { \
if (texres->tin < 0.0f) { \
texres->tin = 0.0f; \
} \
else if (texres->tin > 1.0f) { \
texres->tin = 1.0f; \
((void)0)
#define BRICONTRGB \
texres->trgba[0] = tex->rfac * \
((texres->trgba[0] - 0.5f) * tex->contrast + tex->bright - 0.5f); \
texres->trgba[1] = tex->gfac * \
((texres->trgba[1] - 0.5f) * tex->contrast + tex->bright - 0.5f); \
texres->trgba[2] = tex->bfac * \
((texres->trgba[2] - 0.5f) * tex->contrast + tex->bright - 0.5f); \
if (texres->trgba[0] < 0.0f) { \
texres->trgba[0] = 0.0f; \
if (texres->trgba[1] < 0.0f) { \
texres->trgba[1] = 0.0f; \
if (texres->trgba[2] < 0.0f) { \
texres->trgba[2] = 0.0f; \
if (tex->saturation != 1.0f) { \
float _hsv[3]; \
rgb_to_hsv(texres->trgba[0], texres->trgba[1], texres->trgba[2], _hsv, _hsv + 1, _hsv + 2); \
_hsv[1] *= tex->saturation; \
hsv_to_rgb( \
_hsv[0], _hsv[1], _hsv[2], &texres->trgba[0], &texres->trgba[1], &texres->trgba[2]); \
if ((tex->saturation > 1.0f) && !(tex->flag & TEX_NO_CLAMP)) { \
struct ImBuf;
struct Image;
struct ImagePool;
struct Tex;
struct TexResult;
/* texture_image.c */
int imagewraposa(struct Tex *tex,
struct Image *ima,
struct ImBuf *ibuf,
const float texvec[3],
const float dxt[2],
const float dyt[2],
struct TexResult *texres,
struct ImagePool *pool,
bool skip_load_image);
int imagewrap(struct Tex *tex,
void image_sample(struct Image *ima,
float fx,
float fy,
float dx,
float dy,
float result[4],
struct ImagePool *pool);
}