[Drape] Introduce developer sandbox app for rendering debugging and developement #10052
Labels
No labels
Accessibility
Accessibility
Address
Address
Android
Android
Android Auto
Android Auto
Android Automotive (AAOS)
Android Automotive (AAOS)
API
API
AppGallery
AppGallery
AppStore
AppStore
Battery and Performance
Battery and Performance
Blocker
Blocker
Bookmarks and Tracks
Bookmarks and Tracks
Borders
Borders
Bug
Bug
Build
Build
CarPlay
CarPlay
Classificator
Classificator
Community
Community
Core
Core
CrashReports
CrashReports
Cycling
Cycling
Desktop
Desktop
DevEx
DevEx
DevOps
DevOps
dev_sandbox
dev_sandbox
Directions
Directions
Documentation
Documentation
Downloader
Downloader
Drape
Drape
Driving
Driving
Duplicate
Duplicate
Editor
Editor
Elevation
Elevation
Enhancement
Enhancement
Epic
Epic
External Map Datasets
External Map Datasets
F-Droid
F-Droid
Fonts
Fonts
Frequently User Reported
Frequently User Reported
Fund
Fund
Generator
Generator
Good first issue
Good first issue
Google Play
Google Play
GPS
GPS
GSoC
GSoC
iCloud
iCloud
Icons
Icons
iOS
iOS
Legal
Legal
Linux Desktop
Linux Desktop
Linux packaging
Linux packaging
Linux Phone
Linux Phone
Mac OS
Mac OS
Map Data
Map Data
Metro
Metro
Navigation
Navigation
Need Feedback
Need Feedback
Night Mode
Night Mode
NLnet 2024-06-281
NLnet 2024-06-281
No Feature Parity
No Feature Parity
Opening Hours
Opening Hours
Outdoors
Outdoors
POI Info
POI Info
Privacy
Privacy
Public Transport
Public Transport
Raw Idea
Raw Idea
Refactoring
Refactoring
Regional
Regional
Regression
Regression
Releases
Releases
RoboTest
RoboTest
Route Planning
Route Planning
Routing
Routing
Ruler
Ruler
Search
Search
Security
Security
Styles
Styles
Tests
Tests
Track Recording
Track Recording
Translations
Translations
TTS
TTS
UI
UI
UX
UX
Walk Navigation
Walk Navigation
Watches
Watches
Web
Web
Wikipedia
Wikipedia
Windows
Windows
Won't fix
Won't fix
World Map
World Map
No milestone
No project
No assignees
3 participants
Due date
No due date set.
Dependencies
No dependencies set.
Reference: organicmaps/organicmaps-tmp#10052
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "dev_sandbox"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Current problem
The existing Qt-based desktop app supports only OpenGL rendering, while mobile clients use Metal and Vulkan mostly. More than that, the Qt-based app injects its own OpenGL code and mixes rendering with Qt's OpenGL. It increases the distance between desktop and mobile clients even more. Thus, the development and debugging of graphics features can be reliably done only on mobile devices. It's much more tricky because of the lack of good tooling, especially for Vulkan.
The latest versions of Qt provide support for Metal and Vulkan on desktop (not supported by OMaps at the moment, though). However, Qt still does its own Vulkan/Metal API calls there and requires a lot of additional code to be compatible with OMaps approach - execute business logic in the main thread and do rendering in a separate thread(s).
My approach
There are two popular and well-known libraries in the community of game and rendering developers
These libraries do OS-level window management and simplistic GUI for tons of graphics demos and games. I created a separate app in the OMaps repository that utilises them.
How it looks (click to open video):

Features
How to use
Just build and run
dev_sandbox
projectnit: I'd prefer to make one Window or App instance here that holds all these callbacks. To have one global object instead of many.
@ -0,0 +537,4 @@
#if defined(OMIM_OS_MAC)
x *= visualScale;
y *= visualScale;
#endif
This stuff here and above is a bit mind-blowing :) Why do we multiply coordinates on Mac and divide on Linux.
nit: I suppose static is redundant here
@ -0,0 +537,4 @@
#if defined(OMIM_OS_MAC)
x *= visualScale;
y *= visualScale;
#endif
Unfortunately, OS are not consistent in terms of visual scale in glfw library (possibly it's native behaviour on this OS). macOS returns width/height in the same units regardless of screen scaling, while on Linux it returns width/height premultiplied to display scaling.
Is it needed? Shaders compiler is used only in tests
@ -0,0 +82,4 @@
endforeach()
endfunction()
copy_resources(
How about vulkan shaders folder? Is the app going to support Vulkan?
LGTM
@ -0,0 +82,4 @@
endforeach()
endfunction()
copy_resources(
Good catch!