Welcome, Guest. Please login or register. Did you miss your activation email?

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - SajSFML

Pages: [1]
1
Graphics / Re: [Solved] Loading Images Inside a Thread
« on: December 26, 2021, 09:10:14 pm »
Is there any update on this? I also want to load images in separate threads, but I found this topic and it seems to be abandoned.

2
Graphics / Re: Parallel resource loading possible?
« on: October 25, 2021, 05:44:20 pm »
Okay I think I can understand, so I can safely load with sf::Image in parallel, but then I still have to load into sf::Texture sequentially.

3
Graphics / Re: Parallel resource loading possible?
« on: October 25, 2021, 04:43:21 pm »
So, this is the difference between sf::Image and sF::Texture? If I call .loadFromFile on sf::Image, then it won't do OpenGL stuff?

4
Graphics / Parallel resource loading possible?
« on: October 25, 2021, 12:25:09 am »
Hello you all, I am using SFML for my application and I have quite a few images to load. I was wondering if I can improve the total time it takes by loading the images in parallel? Is SFML thread-safe for me to do this?

BTW, the version I am using is 2.5.1, if you need to know.

5
Audio / Re: How to disable audio's CPU information message?
« on: June 23, 2020, 04:45:55 pm »
Oh okay. I guess I can just ignore it in debug mode, and build in release mode when I am done with my project. Thanks for clearing things up!

6
Audio / Re: How to disable audio's CPU information message?
« on: June 23, 2020, 04:17:13 pm »
I have installed SFML via vcpkg and linked SFML with CMake via vcpkg.

And, I don't think I am building the entire thing. I only link the CMake targets I need from SFML (which is sfml-audio, sfml-network, and sfml-graphics)

7
Audio / How to disable audio's CPU information message?
« on: June 22, 2020, 06:54:08 pm »
Whenever I create a new sf::Music, it always logs this into my console:

CPU info (x86-64):
  CMOV ....... Y
  MMX ........ Y
  SSE ........ Y
  SSE2 ....... Y
  SSE3 ....... Y
  SSSE3 ...... Y
  SSE41 ...... Y
  SSE42 ...... Y
  AVX ........ Y
  FMA ........ Y
  AVX2 ....... Y
  AVX OS sup . Y

Is there a way to disable this from being outputted?

Pages: [1]
anything