BioShock Infinite Linux Gaming Benchmarks

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • blackout23
    replied
    Originally posted by dimko View Post
    1. And that's what happened to me personally. I paid the money and I didn't get the service, why should I be happy, again?
    2. I have, and it is in unacceptable state. I can't complete game on lowest settings on reasonable hardware.

    Why am I unreasonable than?
    2. I can confirm this. I downloaded W2 last night. I have a high end Intel i7 and NVIDIA rig overclocked to the max. The game runs fine at a constant 60 FPS @ 1440p on Windows on Max settings w/o UberSampling. On Linux it is absolutely unplayable. Even when I lower the settings (which is unacceptable to begin with) it doesn't get any better, this probably means that eON CPU bottlenecks the shit out of this game.

    Leave a comment:


  • dimko
    replied
    Originally posted by computerquip View Post
    This is literally one of the least accepting communities I've ever seen...

    1. Be thankful any interest at all was made for a Linux port. It's fine to be wary of bad ports but the lack of acceptance is totally unreasonable.
    2. Has anyone played The Witcher 2 within the past three months? It might have taken awhile but it's in an acceptable state.


    Stop being so goddamn unreasonable.
    1. And that's what happened to me personally. I paid the money and I didn't get the service, why should I be happy, again?
    2. I have, and it is in unacceptable state. I can't complete game on lowest settings on reasonable hardware.

    Why am I unreasonable than?

    Leave a comment:


  • eydee
    replied
    My guess is that the profile is not correctly set up. Open a terminal, navigate to the game dir and issue this command:
    Code:
    LD_LIBRARY_PATH=~/.steam/bin32/ ~/.steam/bin32/steam-runtime/run.sh ./bioshock
    If it launches (run.sh must be used), then file a bug report for Michael.

    Leave a comment:


  • Kano
    replied
    You don't need a symlink, just rename the dir while Steam is closed.

    Leave a comment:


  • xpander
    replied
    Originally posted by eydee View Post
    Probably making a SteamApps -> steamapps symlink would be the easiest solution.
    that is already fixed...
    the problem is now that the exuctable doesn't find steam running..

    Leave a comment:


  • esfomeado
    replied
    Can you compare with the Windows version?
    Thanks

    Leave a comment:


  • eydee
    replied
    Originally posted by xpander View Post
    ok got the sdl issues fixed but now it complains that steam is not running or im not logged in.
    starting game directly from executable does same.. so i guess the executable cant find if my steam is running?
    Probably making a SteamApps -> steamapps symlink would be the easiest solution.

    Leave a comment:


  • xpander
    replied
    ok got the sdl issues fixed but now it complains that steam is not running or im not logged in.
    starting game directly from executable does same.. so i guess the executable cant find if my steam is running?

    Leave a comment:


  • Phexe
    replied
    Also fixes for stock Arch install;

    Code:
    #!/bin/sh
    cd $DEBUG_REAL_HOME/.steam/steam/steamapps/common/BioShock\ Infinite
    rm -rf $DEBUG_REAL_HOME/.local/share/irrationalgames/bioshockinfinite/GameDocuments/My\ Games/BioShock\ Infinite/Benchmarks/*.csv
    HOME=$DEBUG_REAL_HOME LD_LIBRARY_PATH=$DEBUG_REAL_HOME/.steam/steam/ubuntu12_32:$DEBUG_REAL_HOME/.steam/steam/ubuntu12_32/steam-runtime/i386/lib/i386-linux-gnu:$DEBUG_REAL_HOME/.steam/steam/ubuntu12_32/steam-runtime/i386/lib:$DEBUG_REAL_HOME/.steam/steam/ubuntu12_32/steam-runtime/i386/usr/lib/i386-linux-gnu:$DEBUG_REAL_HOME/.steam/steam/ubuntu12_32/steam-runtime/i386/usr/lib:$DEBUG_REAL_HOME/.steam/steam/ubuntu12_32/steam-runtime/amd64/lib/x86_64-linux-gnu:$DEBUG_REAL_HOME/.steam/steam/ubuntu12_32/steam-runtime/amd64/lib:$DEBUG_REAL_HOME/.steam/steam/ubuntu12_32/steam-runtime/amd64/usr/lib/x86_64-linux-gnu:$DEBUG_REAL_HOME/.steam/steam/ubuntu12_32/steam-runtime/amd64/usr/lib:/usr/lib32:/usr/lib32:$DEBUG_REAL_HOME/.steam/steam/ubuntu12_32:$DEBUG_REAL_HOME/.steam/steam/ubuntu12_64:$DEBUG_REAL_HOME/.steam/steam/steamapps/common/BioShock\ Infinite:$DEBUG_REAL_HOME/.steam/steam/steamapps/common/BioShock\ Infinite/bin ./bioshock DefaultPCBenchmarkMap.xcmap -unattended $@
    cat $DEBUG_REAL_HOME/.local/share/irrationalgames/bioshockinfinite/GameDocuments/My\ Games/BioShock\ Infinite/Benchmarks/*.csv > $LOG_FILE
    To use primusrun;
    Code:
    #!/bin/sh
    cd $DEBUG_REAL_HOME/.steam/steam/steamapps/common/BioShock\ Infinite
    rm -rf $DEBUG_REAL_HOME/.local/share/irrationalgames/bioshockinfinite/GameDocuments/My\ Games/BioShock\ Infinite/Benchmarks/*.csv
    HOME=$DEBUG_REAL_HOME LD_LIBRARY_PATH=$DEBUG_REAL_HOME/.steam/steam/ubuntu12_32:$DEBUG_REAL_HOME/.steam/steam/ubuntu12_32/steam-runtime/i386/lib/i386-linux-gnu:$DEBUG_REAL_HOME/.steam/steam/ubuntu12_32/steam-runtime/i386/lib:$DEBUG_REAL_HOME/.steam/steam/ubuntu12_32/steam-runtime/i386/usr/lib/i386-linux-gnu:$DEBUG_REAL_HOME/.steam/steam/ubuntu12_32/steam-runtime/i386/usr/lib:$DEBUG_REAL_HOME/.steam/steam/ubuntu12_32/steam-runtime/amd64/lib/x86_64-linux-gnu:$DEBUG_REAL_HOME/.steam/steam/ubuntu12_32/steam-runtime/amd64/lib:$DEBUG_REAL_HOME/.steam/steam/ubuntu12_32/steam-runtime/amd64/usr/lib/x86_64-linux-gnu:$DEBUG_REAL_HOME/.steam/steam/ubuntu12_32/steam-runtime/amd64/usr/lib:/usr/lib32:/usr/lib32:$DEBUG_REAL_HOME/.steam/steam/ubuntu12_32:$DEBUG_REAL_HOME/.steam/steam/ubuntu12_64:$DEBUG_REAL_HOME/.steam/steam/steamapps/common/BioShock\ Infinite:$DEBUG_REAL_HOME/.steam/steam/steamapps/common/BioShock\ Infinite/bin primusrun ./bioshock DefaultPCBenchmarkMap.xcmap -unattended $@
    cat $DEBUG_REAL_HOME/.local/share/irrationalgames/bioshockinfinite/GameDocuments/My\ Games/BioShock\ Infinite/Benchmarks/*.csv > $LOG_FILE
    into

    Code:
    $HOME/.phoronix-test-suite/installed-tests/pts/bioshock-infinite-1.0.0/bioshock-infinite
    Save the file and it will now run.

    Leave a comment:


  • Phexe
    replied
    Pretty decent on my MSI Dominator Lappy, (970M GTX 3G, i7 4710MQ @ 3.5Ghz). On Arch with 3.19-1-ck kernel x86_64.

    Resolution: 1920 x 1080 - Effects Quality: Ultra = 52.35fps

    OpenBenchmarking.org, Phoronix Test Suite, Linux benchmarking, automated benchmarking, benchmarking results, benchmarking repository, open source benchmarking, benchmarking test profiles

    Leave a comment:

Working...
X