Skip to content

Latest commit

 

History

History
85 lines (52 loc) · 1.63 KB

rwtexture3d-load-float-uint-.md

File metadata and controls

85 lines (52 loc) · 1.63 KB
title description ms.assetid keywords topic_type api_name api_type ms.topic ms.date api_location
RWTexture3D::Load(int,uint) function
Reads texture data and returns status about the operation. | RWTexture3D::Load(int,uint) function
7BC334D3-217A-454F-B205-A9D7D66B5E99
Load function HLSL
apiref
Load
NA
reference
05/31/2018

RWTexture3D::Load(int,uint) function

Reads texture data and returns status about the operation.

Syntax

 Load(
  in  int  Location,
  out uint Status
);

Parameters

Location [in]

Type: int

The location of the texture.

Status [out]

Type: uint

The status of the operation. You can't access the status directly; instead, pass the status to the CheckAccessFullyMapped intrinsic function. CheckAccessFullyMapped returns TRUE if all values from the corresponding Sample, Gather, or Load operation accessed mapped tiles in a tiled resource. If any values were taken from an unmapped tile, CheckAccessFullyMapped returns FALSE.

Return value

Type:

The return type matches the type in the declaration for the RWTexture3D object.

Remarks

This function is supported for the following types of shaders:

Vertex Hull Domain Geometry Pixel Compute
x x

 

See also

Load methods