Skip to content

Latest commit

 

History

History
96 lines (48 loc) · 3.1 KB

dx-graphics-hlsl-modf.md

File metadata and controls

96 lines (48 loc) · 3.1 KB
title description ms.assetid keywords topic_type api_name api_location api_type ms.topic ms.date
modf (Corecrt\_math.h)
Splits the value x into fractional and integer parts, each of which has the same sign as x.
0cac1cf3-f0da-4b0a-ba30-4af5d65b04b2
modf HLSL
apiref
modf
corecrt_math.h
HeaderDef
reference
05/31/2018

modf

Splits the value x into fractional and integer parts, each of which has the same sign as x.

ret modf(x, out ip)

Parameters

Item Description
x
[in] The x input value.
ip
[out] The integer portion of x.

Return Value

The signed-fractional portion of x.

Type Description

Name In/Out Template Type Component Type Size
x in scalar, vector, or matrix float, int any
ip out same as input x float, int same dimension(s) as input x
ret out same as input x float, int same dimension(s) as input x

Minimum Shader Model

This function is supported in the following shader models.

Shader Model Supported
Shader Model 2 (DirectX HLSL) and higher shader models yes
Shader Model 1 (DirectX HLSL) yes (vs_1_1 only)

Requirements

Requirement Value
Header
Corecrt_math.h

See also

Intrinsic Functions (DirectX HLSL)