There was an error fetching the commit references. Please try again later.
video_core/gpu: Create threads separately from initialization
Like with CPU emulation, we generally don't want to fire off the threads immediately after the relevant classes are initialized, we want to do this after all necessary data is done loading first. This splits the thread creation into its own interface member function to allow controlling when these threads in particular get created.
Showing
- src/core/core.cpp 4 additions, 11 deletionssrc/core/core.cpp
- src/video_core/gpu.h 5 additions, 0 deletionssrc/video_core/gpu.h
- src/video_core/gpu_asynch.cpp 5 additions, 1 deletionsrc/video_core/gpu_asynch.cpp
- src/video_core/gpu_asynch.h 1 addition, 4 deletionssrc/video_core/gpu_asynch.h
- src/video_core/gpu_synch.cpp 3 additions, 1 deletionsrc/video_core/gpu_synch.cpp
- src/video_core/gpu_synch.h 1 addition, 0 deletionssrc/video_core/gpu_synch.h
- src/video_core/gpu_thread.cpp 11 additions, 6 deletionssrc/video_core/gpu_thread.cpp
- src/video_core/gpu_thread.h 4 additions, 2 deletionssrc/video_core/gpu_thread.h
- src/video_core/video_core.cpp 10 additions, 0 deletionssrc/video_core/video_core.cpp
- src/video_core/video_core.h 7 additions, 0 deletionssrc/video_core/video_core.h
Loading
Please register or sign in to comment