Skip to content
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

Ap-Changes #33

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
$ display-library
> AMD Display Library SDK
GPUOpen-LibrariesAndSDKs/display-library <
2 changes: 1 addition & 1 deletion Sample/Eyefinity/eyefinity.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ int atiEyefinityGetConfigInfo(char OSDisplayName[], EyefinityInfoStruct *lpEyefi
for (int dispIdx = 0, foundDisplays = 0; dispIdx < numDisplays; dispIdx++) {
ADLDisplayTarget oneAdlDisplay = adlDisplays[dispIdx];
if (oneAdlDisplay.iDisplayMapIndex == oneAdlDesktop.iDisplayMapIndex) {
if (primaryIndex == oneAdlDisplay.displayID.iDisplayPhysicalAdapterIndex) {
if (primaryIndex == oneAdlDisplay.displayID.iDisplayLogicalAdapterIndex) {
//add a display in list. For SLS this info will be updated later
displays.push_back(TopologyDisplay(oneAdlDisplay.displayID, 0,
oneAdlDesktop.displayMode.iXRes, oneAdlDesktop.displayMode.iYRes, //size
Expand Down