Hacktoberfest 2026: những issue maintainer đã đánh dấu cho tháng Mười, đang mở và phù hợp người mới. Xem issue Hacktoberfest

API inconsistency with DPI_AWARE flag

Đang mở
#93 0 bình luận 0 reaction 0 người được giao Xem trên GitHub

Chưa có ai nhận issue này.

Đánh giá

Độ khó
5/5
Thời gian dự kiến
Hơn một tuần
Mức phù hợp với người mới
25/100
Loại issue
Tái cấu trúc
Độ rõ ràng
Cần làm rõ
Mức độ hoạt động
Đình trệ
Công nghệ
cpp, lua
Lĩnh vực
api, desktop

Hướng nghiên cứu

Bắt đầu bằng cách truy vết r_renderer_c::VirtualScreenScaleFactor() và các điểm vào API GetScreenSize và GetScaleFactor, sau đó so sánh cách các hàm kết xuất xử lý các đối số vị trí và kích thước. Xem xét các thay đổi DPI_AWARE trong các PR 44, 80 và 86, cùng với mã nguồn chia tỷ lệ Win32/GLFW liên quan. Công việc được xem là hoàn tất khi hợp đồng API và hành vi chia tỷ lệ khi chạy nhất quán, đồng thời hành vi Lua dự kiến được bao phủ bởi các kiểm thử hoặc một quy trình xác minh được ghi chép.

Do mô hình lập chỉ mục viết ra từ nội dung của issue.

Mô tả

The DPI_AWARE flag was introduced with https://github.com/PathOfBuildingCommunity/PathOfBuilding-SimpleGraphic/pull/44/commits/59492a4003ea77c03f9ae62c5e66a13afd02f313 as a way for the Lua code to opt out of the virtualization and get access to physical sizes/positions.

With the recent work on UI scaling in https://github.com/PathOfBuildingCommunity/PathOfBuilding-SimpleGraphic/pull/80 and https://github.com/PathOfBuildingCommunity/PathOfBuilding-SimpleGraphic/pull/86, the API has ended up in an inconsistent state where some functions use physical units if DPI_AWARE is set, but others still use virtual units in its arguments and return values.

For example, GetScreenSize returns physical units (i.e. the pixel size of the framebuffer), while all the other API functions still receive and return virtual units. It looks like PoB Lua code is not ready to deal with physical units, so the screen size is actually mapped right back to virtual units. Maybe PoB just shouldn't set the DPI_AWARE flag yet because everything seems to be done in virtual units at the moment. But that leads us to the second problem(?):

With the current implementation of r_renderer_c::VirtualScreenScaleFactor() and its usage in the API functions, the DPI_AWARE flag seems to serve two different functions:

  1. A way to influence the "API contract" between the Lua code and SimpleGraphic. Setting it tells the API to accept and return positions and sizes in physical units instead of virtual units (this seems to be in line with the original intention of this flag).
  2. To control whether application UI scaling is performed by the runtime. Before the recent changes, VirtualScreenScaleFactor was only used to determine which factor to return to Lua in the GetScaleFactor API function. Currently, it is also being used in the render functions to scale their position/size arguments. Not setting the flag means 1.0 is always returned, effectively turning off scaling.

The second behavior surprised me a bit. This means we cannot unset the flag and only use virtual units between Lua <-> Runtime because it would turn off the scaling entirely.

Here is how i expected it to work:

  • Make the runtime always DPI aware and perform app scaling: I'm not very familiar with the win32 api but it looks like we can tell the OS that our application is per-monitor (v2) DPI aware. Maybe that's already the case? I've also spotted code that checks registry values to decide whether to ignore the scaling factor returned by GLFW. Not sure if that's needed anymore.
  • Have the flag only affect the API contract, meaning physical units are used between Lua and SimpleGraphic if the flag is set, otherwise we only let Lua know about the virtual world. Not setting the flag shouldn't have any effect on whether scaling is performed.
  • If users want to override the scaling factor given by the OS, they can use the newly added scaling factor override in the settings.
  • With these changes, we can unset the DPI_AWARE flag again, since PoB doesn't currently care about the physical world, but still retain the scaling behavior.

If i'm missing something or wrongly interpreted the intention behind the flag, then just ignore my approach. This API inconsistency manifested itself in a very minor problem that I've opted to fix on the Lua side for now: https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/9373.

Ngôn ngữ chính
C++
Star
22
Fork
62
Merge trung bình
1 ngày 3 giờ
Pull request đã merge (30 ngày)
4

Hướng dẫn đóng góp

Mở hướng dẫn đóng góp

Bắt đầu từ đâu

  1. Đọc hết issue, rồi đọc hướng dẫn đóng góp của dự án.
  2. Bình luận trên issue rằng bạn sẽ nhận — tránh hai người làm cùng một việc.
  3. Fork repository và làm thay đổi trên một nhánh.
  4. Mở pull request có tham chiếu số hiệu của issue.

Issue khác của PathOfBuildingCommunity/PathOfBuilding-SimpleGraphic

Tất cả issue của PathOfBuildingCommunity/PathOfBuilding-SimpleGraphic

Issue tương tự

Thêm issue về C++

Nhận issue mới trong hộp thư của bạn

Bản tóm tắt ngắn những issue GitHub phù hợp với người mới.