ID3D10Device::CreateVertexShader method
Create a vertex-shader object from a compiled shader.
Syntax
HRESULT CreateVertexShader( [in] const void *pShaderBytecode, [in] SIZE_T BytecodeLength, [out] ID3D10VertexShader **ppVertexShader );
Parameters
- pShaderBytecode [in]
-
Type: const void*
A pointer to the compiled shader. To get this pointer see Getting a Pointer to a Compiled Shader.
- BytecodeLength [in]
-
Type: SIZE_T
Size of the compiled vertex shader.
- ppVertexShader [out]
-
Type: ID3D10VertexShader**
Address of a pointer to an ID3D10VertexShader Interface. If this is NULL, all other parameters will be validated, and if all parameters pass validation this API will return S_FALSE instead of S_OK.
Return value
Type: HRESULT
This method returns one of the following Direct3D 10 Return Codes.
Requirements
|
Header |
|
|---|---|
|
Library |
|
See also