mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-11-30 22:24:15 +01:00
d1ae152f60
Fixes build with mingw from ubuntu 17.10. Missing C++17 features I guess.
54 lines
1.2 KiB
C++
54 lines
1.2 KiB
C++
#include <cstring>
|
|
#include <fstream>
|
|
#include <vector>
|
|
|
|
#include <d3dcompiler.h>
|
|
|
|
#include <shellapi.h>
|
|
#include <windows.h>
|
|
#include <windowsx.h>
|
|
|
|
#include "../test_utils.h"
|
|
|
|
using namespace dxvk;
|
|
|
|
int WINAPI WinMain(HINSTANCE hInstance,
|
|
HINSTANCE hPrevInstance,
|
|
LPSTR lpCmdLine,
|
|
int nCmdShow) {
|
|
int argc = 0;
|
|
LPWSTR* argv = CommandLineToArgvW(
|
|
GetCommandLineW(), &argc);
|
|
|
|
if (argc < 2) {
|
|
std::cerr << "Usage: dxbc-disasm input.dxbc" << std::endl;
|
|
return 1;
|
|
}
|
|
|
|
std::ifstream ifile(str::fromws(argv[1]), std::ios::binary);
|
|
ifile.ignore(std::numeric_limits<std::streamsize>::max());
|
|
std::streamsize length = ifile.gcount();
|
|
ifile.clear();
|
|
|
|
ifile.seekg(0, std::ios_base::beg);
|
|
std::vector<char> dxbcCode(length);
|
|
ifile.read(dxbcCode.data(), length);
|
|
|
|
Com<ID3DBlob> assembly;
|
|
|
|
HRESULT hr = D3DDisassemble(
|
|
dxbcCode.data(),
|
|
dxbcCode.size(),
|
|
D3D_DISASM_ENABLE_INSTRUCTION_NUMBERING, nullptr,
|
|
&assembly);
|
|
|
|
if (FAILED(hr)) {
|
|
std::cerr << "Failed to disassemble shader" << std::endl;
|
|
return 1;
|
|
}
|
|
|
|
std::string data((const char *)assembly->GetBufferPointer(), assembly->GetBufferSize());
|
|
std::cout << data;
|
|
return 0;
|
|
}
|