release notes, housekeeping for 1.0.6 release

This commit is contained in:
Matt Pharr
2011-08-17 14:55:21 +01:00
parent 206c851146
commit 87ec7aa10d
3 changed files with 44 additions and 1 deletions

View File

@@ -1988,6 +1988,18 @@ function returns the 16 bits that are the closest match to the given
int16 float_to_half(float f)
uniform int16 float_to_half(uniform float f)
There are also faster versions of these functions that don't worry about
handling floating point infinity, "not a number" and denormalized numbers
correctly. These are faster than the above functions, but are less
precise.
::
float half_to_float_fast(unsigned int16 h)
uniform float half_to_float_fast(uniform unsigned int16 h)
int16 float_to_half_fast(float f)
uniform int16 float_to_half_fast(uniform float f)
Atomic Operations and Memory Fences
-----------------------------------