Name
texCUBEbias - cube texture lookup with bias.
Synopsis
float4 texCUBEbias(samplerCUBE samp, float4 s)
int4 texCUBEbias(isamplerCUBE samp, float4 s)
unsigned int4 texCUBEbias(usamplerCUBE samp, float4 s)
Parameters
- samp
-
Sampler to lookup.
- s.xyz
-
Coordinates to perform the lookup.
- s.w
-
Level of detail bias value.
Description
Performs a texture lookup with bias in sampler samp using coordinates s.
Profile Support
texCUBEbias is supported in fragment profiles starting with fp30 and in vertex profiles
starting with vp40. Variants with integer samplers are only supported in gp4 and
newer profiles.
See Also
texCUBElod
|