Jump to content
The Dark Mod Forums

r.a.sattarov

Member
  • Posts

    7
  • Joined

  • Last visited

Reputation

2 Neutral

About r.a.sattarov

  • Birthday 01/13/1987

Profile Information

  • Gender
    Male
  • Location
    Russia, Kazan

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Added alternative method to get s_numPhysicalCPUCores value, when parsing /proc/cpuinfo fails (usable for non-x86 CPU, e.g. for MCST e2k architecture). These changes was accepted in RBDoom3-BFG - https://github.com/RobertBeckebans/RBDOOM-3-BFG/pull/478 platform_linux_cpp.diff
  2. Thanks a lot Confused that in Windows this option is set to off, but there by default 60 fps (and with "Uncap FPS = OFF" too).
  3. Hello to everyone! Found an interesting behavior in Linux related to the FPS counter in menu (and in game) On Linux (by default), the FPS counter is kept at around 50. If enabled option "Uncap FPS", then FPS will be 60. And the option "Max FPS" has no effect on this number of FPS. Linux computer configuration: cpu: AMD Ryzen 5 2600 (6 core, 3.4GHz) ram: 16Gb video card: AMD Radeon R9 280 OS: Xubuntu 20.04 (Linux 5.4.0-33, Mesa 20.0.4, amdgpu driver) Checked this behavior in version 2.08_beta-007 (build 8755).
  4. I have access to "Elbrus 801-PC". It comes with a AMD Radeon R5 230 graphics card (OpenGL 4.1). But various AMD Radeon graphics cards can be used (e.g. Radeon RX 580 with OpenGL 4.5 and Vulkan). Ref: http://www.ineum.ru/elbrus_801-pc_gen4 I have successfully compiled RBDOOM-3-BFG for e2k architecture. And I have made some changes to the source code of the game to initially support this architecture. Ref: https://github.com/RobertBeckebans/RBDOOM-3-BFG/pull/432 ARM64/Aarch64 architecture support has recently been added (for the Nvidia Jetson board). Ref: https://github.com/RobertBeckebans/RBDOOM-3-BFG/pull/473
  5. I use PDK "OS Elbrus 5" (based on Linux 4.19 kernel) with AMD Radeon GPU (amdgpu driver).
  6. Understood. I did not know that such a check appeared in CMake The current version of the MCST lcc compiler (version 1.24.10) fully supports C++03, C++11, C++14 standards and has experimental support of C++17. This compiler has a nominal compatibility with g++-7.3.0. The compiler (by default) has the -std=gnu++14 mode enabled (C++14 with gnu extensions). Also, it can compile with using of Intel Intrinsics No, I was able to compile only at 88% After fixing in /ThirdParty/artefacts/devil/include/IL/il.h file, there was a problem with the /idlib/math/Simd.cpp file. It contains "#include <cpuid.h>" string. There is no such header file on e2k. Can you modify this file, similar to how it is done in RBDOOM-3-BFG (and with adding "USE_INTRINSICS" option)? Ref: https://github.com/RobertBeckebans/RBDOOM-3-BFG/blob/master/neo/idlib/math/Simd.cpp RBDOOM-3-BFG compiles on e2k without problems (and runs very well). Yes, such a change in the source code would be very helpful for e2k.
  7. Hello everyone! I made 2 changes in the source code. Could you, please, take a look at this? - CMake: Added check of compiler for support C++14 standard CXX_STANDARD supported values are 98, 11, 14, 17 and 20. Ref: https://cmake.org/cmake/help/latest/prop_tgt/CXX_STANDARD.html - ThirdParty/devil: fix for MCST lcc compiler LCC-Win32 and MCST lcc compilers define same identifier (LCC). Have been added check of MCST Elbrus 2000 (e2k) architecture. Ref: https://en.wikipedia.org/wiki/Elbrus_2000 Attached the patch with my changes. C++14_check_for_CMake_+_fix_for_ThirdParty-devil.patch
×
×
  • Create New...