0 out of 1 rated this helpful - Rate this topic

D3DGetBlobPart function

Note  You can use this API to develop your Windows Store apps, but you can't use it in apps that you submit to the Windows Store.

Retrieves a specific part from a compilation result.

Syntax

HRESULT WINAPI D3DGetBlobPart(
  in   LPCVOID pSrcData,
  in   SIZE_T SrcDataSize,
  in   D3D_BLOB_PART Part,
  in   UINT Flags,
  out  ID3DBlob **ppBlob
);

Parameters

pSrcData [in]

Type: LPCVOID

A pointer to uncompiled shader data; either ASCII HLSL code or a compiled effect.

SrcDataSize [in]

Type: SIZE_T

Length of uncompiled shader data that pSrcData points to.

Part [in]

Type: D3D_BLOB_PART

A D3D_BLOB_PART-typed value that specifies the part of the buffer to retrieve.

Flags [in]

Type: UINT

Flags that indicate how to retrieve the blob part. Currently, no flags are defined.

ppBlob [out]

Type: ID3DBlob**

The address of a pointer to the ID3DBlob interface that is used to retrieve the specified part of the buffer.

Remarks

D3DGetBlobPart retrieves the part of a blob (arbitrary length data buffer) that contains the type of data that the Part parameter specifies.

Requirements

Header

D3Dcompiler.h

Library

D3dcompiler.lib or D3dcompiler_nn.dll

See also

Functions

 

 

Send comments about this topic to Microsoft

Build date: 3/5/2013

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.