| 31 | namespace AMD |
| 32 | { |
| 33 | HRESULT CreateUnitCube(ID3D11VertexShader ** ppVS, ID3D11Device *pDevice) |
| 34 | { |
| 35 | if (pDevice == NULL || ppVS == NULL) |
| 36 | { |
| 37 | AMD_OUTPUT_DEBUG_STRING("Invalid Device or Vertex Shader pointers in function %s\n", AMD_FUNCTION_NAME); |
| 38 | return E_POINTER; |
| 39 | } |
| 40 | |
| 41 | return pDevice->CreateVertexShader(VS_UNIT_CUBE_Data, sizeof(VS_UNIT_CUBE_Data), NULL, ppVS); |
| 42 | } |
| 43 | |
| 44 | |
| 45 | HRESULT CreateClipSpaceCube(ID3D11VertexShader** ppVS, ID3D11Device* pDevice) |
nothing calls this directly
no outgoing calls
no test coverage detected