다음을 통해 공유


CommandListCast 함수

이 함수 템플릿은 모든 명령 목록에 대한 상수 포인터를 ID3D12CommandList에 대한 const 포인터로 캐스팅합니다.

이 캐스트는 강력한 형식의 명령 목록 포인터를 ExecuteCommandLists에 전달하는 데 유용합니다.

구문

ID3D12CommandList * const * inline CommandListCast(
   t_CommandListType * const * pp
);

매개 변수

Pp

형식: t_CommandListType * const *

캐스팅할 강력한 형식의 명령 목록입니다.

템플릿 인수 t_CommandListType 강력한 형식의 명령 목록 개체를 지정합니다.

반환 값

형식: ID3D12CommandList * const *

ID3D12CommandList로 재해석된 강력한 형식의 명령 목록입니다.

설명

CommandListCast는 reinterpret_cast 수행합니다. 캐스트는 명령 목록의 const-ness를 준수하는 한 유효합니다.

CommandListCast 함수는 다음과 같이 정의됩니다.

template <typename t_CommandListType>
inline ID3D12CommandList * const * CommandListCast(t_CommandListType * const * pp)
{
    return reinterpret_cast<ID3D12CommandList * const *>(pp);
}
          

요구 사항

요구 사항
헤더
D3dx12.h
라이브러리
D3D12.lib
DLL
D3D12.dll

추가 정보

D3D12용 도우미 함수