J. Peter Mugaas

Results 20 comments of J. Peter Mugaas

https://code.videolan.org/videolan/vlc/-/blob/master/contrib/src/fxc2/0001-make-Vn-argument-as-optional-and-provide-default-var.patch looks similar to https://github.com/mozilla/fxc2/pull/3/files . I have confirmed that my program can accept -Vn as strictly optional (a default is used if none provided) and added the appropriate test...

The VLC group's work does not have as many options as I am aiming to provide. Those opetions can become very import when porting some of Microsoft's Open Source DirectX...

DirectXTK requires special documented parameters to compile shaders but unfortunately, fxc2 does not handle those special parameters. at all The efxc2 program handles those parameters by translating them into an...

I tried the main branch but still got the warnings.

There is a page in the GCC manual about warning options at: https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html . I have to be honest in saying that I do feel that this is a spurious...

I tried #110 but that did not work when doing something like "`ninja test`". ``` ==> Starting check()... [6/11] Linking target test/DirectX-Headers-Test FAILED: test/DirectX-Headers-Test c++ -o test/DirectX-Headers-Test test/DirectX-Headers-Test.p/test.cpp.o -Wl,--as-needed -Wl,--no-undefined...

In test.cpp, I was able to trace the segfault to this line: `if (FAILED(list->GetAdapter(0, &adapter)))` In feature_check_test.cpp, I was able to trace the segfault to this line: ` if(FAILED(adapter_factory->CreateAdapterList(_countof(dx_must_attr), dx_must_attr,...

I can run DirectX-Headers-Test.exe with cmd after compiling in "mingw64" and I get to this line: `if (FAILED(factory->CreateAdapterList(1, DXCORE_ADAPTER_ATTRIBUTE_D3D12_CORE_COMPUTE, &list))) ` and the program stops. I was able to run...

The directx-shader-compiler (dxc.exe) is required for some DirectX 12.0 based things such as [DirectXTK12](https://github.com/microsoft/DirectXTK12). I have a package at: [https://raw.githubusercontent.com/JPeterMugaas/MINGW-ext-packages/master/mingw-w64-dxc/PKGBUILD](https://raw.githubusercontent.com/JPeterMugaas/MINGW-ext-packages/master/mingw-w64-dxc/PKGBUILD) but that simply packages the precompiled binaries from GitHub and...