Skip to content
Snippets Groups Projects
Commit 882d54da authored by Henri Verbeet's avatar Henri Verbeet
Browse files

tests: Get rid of the unused SHADER_BYTECODE macro.

parent b4d6aa0d
No related branches found
No related tags found
No related merge requests found
......@@ -201,12 +201,6 @@ static D3D12_SHADER_BYTECODE shader_bytecode(const DWORD *code, size_t size)
return shader_bytecode;
}
 
#if _WIN32
# define SHADER_BYTECODE(dxbc, spirv) ((void)spirv, shader_bytecode(dxbc, sizeof(dxbc)))
#else
# define SHADER_BYTECODE(dxbc, spirv) ((void)dxbc, shader_bytecode(spirv, sizeof(spirv)))
#endif
static void transition_sub_resource_state(ID3D12GraphicsCommandList *list, ID3D12Resource *resource,
unsigned int sub_resource_idx, D3D12_RESOURCE_STATES state_before, D3D12_RESOURCE_STATES state_after)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment