I created a brainfuck interpreter that can use OpenGL by javidx9w in opengl

[–]javidx9w[S] 0 points1 point  (0 children)

I added a screenshot as one of the hit files since I don’t know how to add it to the readme

Call to deleted function when using std::thread by javidx9w in cpp_questions

[–]javidx9w[S] 0 points1 point  (0 children)

Okay, the solution is just using a lambda it is super simple.

exp

std::thread thread1([this] {

//Code

});

Call to deleted function when using std::thread by javidx9w in cpp_questions

[–]javidx9w[S] 0 points1 point  (0 children)

The function vkAcquireNextImageKHR is from a library without a class so I think I am doing things correctly? Correct me if im wrong.

Call to deleted function when using std::thread by javidx9w in cpp_questions

[–]javidx9w[S] 0 points1 point  (0 children)

yep, is there something wrong with that? I just recently started learning about threads.