Skip to content

Latest commit

 

History

History
101 lines (51 loc) · 3.52 KB

dx-graphics-hlsl-frexp.md

File metadata and controls

101 lines (51 loc) · 3.52 KB
title description ms.assetid keywords topic_type api_name api_location api_type ms.topic ms.date
frexp (Corecrt\_math.h)
Returns the mantissa and exponent of the specified floating-point value.
9252feff-da85-4b3e-97db-1fcddd786695
frexp HLSL
apiref
frexp
corecrt_math.h
HeaderDef
reference
05/31/2018

frexp

Returns the mantissa and exponent of the specified floating-point value.

ret frexp(x, exp)

The return value is the mantissa, and the value returned by exp parameter is the exponent.

Parameters

Item Description
x
[in] The specified floating-point value. If the x parameter is 0, this function returns 0 for both the mantissa and the exponent.
exp
[out] The returned exponent of the x parameter.

Return Value

The mantissa of the x parameter.

Type Description

Name Template Type Component Type Size
x scalar, vector, or matrix float any
exp same as input x float same dimension(s) as input x
ret same as input x float same dimension(s) as input x

Minimum Shader Model

This function is supported in the following shader models.

Shader Model Supported
Shader Model 3 (DirectX HLSL) and higher shader models yes
Shader Model 2 (DirectX HLSL) yes (ps_2_x only)
Shader Model 1 (DirectX HLSL) no

Remarks

Requirements

Requirement Value
Header
Corecrt_math.h

See also

Intrinsic Functions (DirectX HLSL)