Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

mips.Operator[][] function

Returns a read-only resource variable.

Syntax

R mips.Operator[][](
  in uint mipSlice,
  in uint2 pos
);

Parameters

mipSlice [in]

Type: uint

The mip slice index.

pos [in]

Type: uint2

The index position. The first component contains the x-coordinate. The second component indicates the desired array slice.

Return value

Type: R

A read-only resource variable.

Remarks

Usage Example



Texture1DArray<float4> tex;
uint mip = 2;
uint2 pos_x_and_array = {1234, 3};
float4 f = tex.mips[mip][pos_x_and_array];        
        

This function is supported for the following types of shaders:

VertexHullDomainGeometryPixelCompute
xxxxxx

 

See also

Texture1DArray
Shader Model 5

 

 

Show:
© 2017 Microsoft