nir: rename nir_op_fne to nir_op_fneu
[mesa.git] / src / compiler / glsl / float64.glsl
2020-08-21 Karol Herbstnir: rename nir_op_fne to nir_op_fneu
2020-07-30 Boris Brezillonnir: Get rid of __[u]int64_to_fp32() and __fp32_to_...
2020-03-18 Ian Romanicksoft-fp64: Split a block that was missing a cast on...
2020-03-18 Ian Romanicksoft-fp64/fadd: Common code optimization for differing...
2020-03-18 Ian Romanicksoft-fp64/fadd: Move common code out of both branches...
2020-03-18 Ian Romanicksoft-fp64/fadd: Use absolute value of expDiff
2020-03-18 Ian Romanicksoft-fp64/fadd: Rename aFrac and bFrac variables
2020-03-18 Ian Romanicksoft-fp64/fadd: Combine an if-statement into the precee...
2020-03-18 Ian Romanicksoft-fp64/fadd: Reformat after previous commit
2020-03-18 Ian Romanicksoft-fp64/fadd: Delete a redundant condition check
2020-03-18 Ian Romanicksoft-fp64/fadd: Just let the subtraction happen when...
2020-03-18 Ian Romanicksoft-fp64/fadd: Pick zero or non-zero result based...
2020-03-18 Ian Romanicksoft-fp64/fadd: Massively split the live range of zFrac...
2020-03-18 Ian Romanicksoft-fp64/fadd: Instead of tracking "b < a", track...
2020-03-18 Ian Romanicksoft-fp64: Optimize __fmin64 and __fmax64 by using...
2020-03-18 Ian Romanicksoft-fp64/ffloor: Simplify the >= 0 comparison
2020-03-18 Ian Romanicksoft-fp64: Relax the way NaN is propagated
2020-03-18 Ian Romanicksoft-fp64/fsat: Micro-optimize x >= 1 test
2020-03-18 Ian Romanicksoft-fp64/fsat: Micro-optimize x < 0 test
2020-03-18 Ian Romanicksoft-fp64/fsat: Correctly handle NaN
2020-03-18 Ian Romanicksoft-fp64/flt: Perform checks in a different order
2020-03-18 Ian Romanicksoft-fp64/fneg: Don't treat NaN specially
2020-03-18 Ian Romanicksoft-fp64: Store sign value as 0 or 0x80000000
2020-03-18 Ian Romanicksoft-fp64: Pick a single idiom for treating sign value...
2020-03-18 Ian Romanicksoft-fp64: Simplify __countLeadingZeros32 function
2020-03-18 Ian Romanicksoft-fp64: Don't open-code umulExtended
2020-03-18 Ian Romanicksoft-fp64/b2f: Reimplement using bitwise logic ops
2020-01-10 Francisco Jerezglsl: Fix software 64-bit integer to 32-bit float conve...
2019-06-25 Sagar Ghugeglsl: Fix round64 conversion function
2019-05-15 Anuj Phogatcompiler: Add lowering support for 64-bit saturate...
2019-01-10 Sagar Ghugeglsl: Add "built-in" functions to do fp32_to_int64...
2019-01-10 Sagar Ghugeglsl: Add "built-in" functions to do fp32_to_uint64...
2019-01-10 Sagar Ghugeglsl: Add "built-in" functions to do fp64_to_int64...
2019-01-10 Sagar Ghugeglsl: Add utility function to round and pack int64_t...
2019-01-10 Sagar Ghugeglsl: Add "built-in" functions to do fp64_to_uint64...
2019-01-10 Sagar Ghugeglsl: Add utility function to round and pack uint64_t...
2019-01-10 Sagar Ghugeglsl: Add "built-in" functions to do int64_to_fp32...
2019-01-10 Sagar Ghugeglsl: Add "built-in" functions to do uint64_to_fp32...
2019-01-10 Sagar Ghugeglsl: Add "built-in" functions to do int64_to_fp64...
2019-01-10 Sagar Ghugeglsl: Add "built-in" functions to do uint64_to_fp64...
2019-01-10 Matt Turnerglsl: Add "built-in" functions to convert bool to double
2019-01-10 Matt Turnerglsl: Add "built-in" functions to do ffract(fp64)
2019-01-10 Matt Turnerglsl: Add "built-in" function to do ffloor(fp64)
2019-01-10 Matt Turnerglsl: Add "built-in" functions to do fmin/fmax(fp64)
2019-01-10 Matt Turnerglsl: Add "built-in" functions to do ffma(fp64)
2019-01-10 Elie Tournierglsl: Add "built-in" functions to do round(fp64)
2019-01-10 Elie Tournierglsl: Add "built-in" functions to do trunc(fp64)
2019-01-10 Elie Tournierglsl: Add "built-in" functions to do sqrt(fp64)
2019-01-10 Elie Tournierglsl: Add "built-in" functions to do fp32_to_fp64(fp32)
2019-01-10 Elie Tournierglsl: Add "built-in" functions to do fp64_to_fp32(fp64)
2019-01-10 Elie Tournierglsl: Add "built-in" functions to do int_to_fp64(int)
2019-01-10 Elie Tournierglsl: Add "built-in" functions to do fp64_to_int(fp64)
2019-01-10 Elie Tournierglsl: Add "built-in" functions to do uint_to_fp64(uint)
2019-01-10 Elie Tournierglsl: Add "built-in" functions to do fp64_to_uint(fp64)
2019-01-10 Elie Tournierglsl: Add "built-in" functions to do mul(fp64, fp64)
2019-01-10 Elie Tournierglsl: Add "built-in" functions to do add(fp64, fp64)
2019-01-10 Elie Tournierglsl: Add "built-in" functions to do lt(fp64, fp64)
2019-01-10 Elie Tournierglsl: Add utility function to extract 64-bit sign
2019-01-10 Elie Tournierglsl: Add "built-in" functions to do eq/ne(fp64, fp64)
2019-01-10 Elie Tournierglsl: Add "built-in" function to do sign(fp64)
2019-01-10 Elie Tournierglsl: Add "built-in" functions to do neg(fp64)
2019-01-10 Elie Tournierglsl: Add "built-in" function to do abs(fp64)
2019-01-10 Matt Turnerglsl: Create file to contain software fp64 functions