Jump to content

Stan`

0 A.D. Project Leader
  • Posts

    18.130
  • Joined

  • Last visited

  • Days Won

    587

Everything posted by Stan`

  1. Do you have all the latest windows updates and the microsoft visual c++ 2017 redistributables ?
  2. Do you have either gpu skinning or resolution scaling enabled in the options ?
  3. Do you use Arch Linux? If so this is a known bug of them trying to use SDL3 instead of SDL2 through sdl compat. You might use the workaround described at https://gitea.wildfiregames.com/0ad/0ad/issues/7569
  4. No git tag in SVN where all the shaders are...
  5. On macOS they are hidden folders so it will be hard to access them via the UI. You can however open a terminal and use a command like so open /Users/{YOUR USERNAME}/Library/Application\ Support/0ad/
  6. Can you disable GPU Skinning ?
  7. It's hard to say. There shouldn't be any roadblocks this time, so it might be fast. They have just been notified today though.
  8. Hello @KeepThinkin Can you give us more information about your mac and the version you are playing ? See ReportingErrors and GameDataPaths. Hopefully interestinglog.html will contain some useful logs to us.
  9. https://github.com/flathub/com.play0ad.zeroad/issues/130
  10. @Samulis made 24 of the 26 that were added in A26
  11. It's an issue with compute shaders. It might be hard to reproduce since we now disabled them for nouveau and GL
  12. When it breaks™. Basically each new version you need to check if the file was changed. You can go on Gitea to see the last modification dates and see what changed by looking at the commit message. Each release has two pages. A list of major changes and a small porting guide. https://gitea.wildfiregames.com/0ad/0ad/wiki/Alpha27 You can help by enriching the later https://gitea.wildfiregames.com/0ad/0ad/wiki/PortA26ToA27 Every errors are logged in a file called interestinglog.html See this page for where to find it https://gitea.wildfiregames.com/0ad/0ad/wiki/GameDataPaths This file is wiped on each game start.
  13. That's why using >= is bad because each new version might break everything
  14. In the mod.json you specify dependencies. You can use <= or >= there although I would not recommend it because you do not know if your mod will be compatible with the future version.
  15. I think you'll find something better than this is coming this week.
  16. This looks like broken gpu skinning. Could you disable that option in the settings ?
  17. Can you show a screenshot ? Ideally provide ~/.config/0ad/logs/userreport_hwdetect.txt
  18. Usually when you use rustup it either installs it itself in path or you have to edit your bashrc. Could also be you installed the wrong toolchain.
  19. Batching can mean many things but IIRC in our case we're just ordering the models so that we render them one by one by texture combination in order to save some time copying textures and mesh data to the gpu buffers. While instancing would mean that if you have 6 identical barrels to render they can be rendered multiple times with different transformations (position, rotation, scale) and material properties in a single draw call instead of 6
  20. As mentioned on the ticket I believe we do have batch rendering, but not instancing. I could not get instancing to work from previous work from @wraitii sadly. It can be picked up at https://gitea.wildfiregames.com/Stan/0ad/src/branch/GL_ARB_Instancing/ (anyone feel free) This will significantly reduce the number of drawcalls, but it might not make a big difference, since we have a lot of different models. Might work with the limit variation option.
×
×
  • Create New...