-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Next() is not working #12
Comments
Does your system have AMD GPU installed? The GetGPUs will only return the AMD GPU. |
I personally don't have AMD GPU but my friend has. I'm developing a plugin for Unreal Engine, it will get all hardware informations from the available GPU Brands. AMD is one of them. I was going to test it on my friend's PC but Next() function is not available. It's not about if I have AMD GPU or not. I'm not planning to run on my PC, but it must compile succesfully. |
I was planning to get GPUs count.
Created a function:
`int GetGPUsCount()
{
// Call the function to initialize ADLX
if (!InitializeADLX())
{
// ADLX initialization failed, return a default value or handle the error
return -1;
}
}
`
But Next() is not available. What should I use?
The text was updated successfully, but these errors were encountered: