-
Notifications
You must be signed in to change notification settings - Fork 5.3k
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
[WIP] Infinite canvas #3623
[WIP] Infinite canvas #3623
Conversation
Codecov Report
@@ Coverage Diff @@
## master #3623 +/- ##
==========================================
+ Coverage 64.82% 66.41% +1.59%
==========================================
Files 471 472 +1
Lines 47303 47451 +148
Branches 9023 9040 +17
==========================================
+ Hits 30663 31515 +852
+ Misses 16640 15936 -704
Continue to review full report at Codecov.
|
Please look into code coverage for this one:
|
09ae2c8
to
3ba0b2c
Compare
3ba0b2c
to
89376c1
Compare
89376c1
to
57918f2
Compare
57918f2
to
3792573
Compare
7627883
to
3c6bc8e
Compare
3c6bc8e
to
2db48da
Compare
4da9e49
to
7d58d9c
Compare
lib/ace/css/editor.css
Outdated
position: absolute; | ||
top: 0; | ||
left: 0; | ||
right: 0; | ||
} | ||
|
||
.ace_text-layer .ace_line_group .ace_line { | ||
position: relative; | ||
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this mean we only get hw acceleration on retina screens?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, do we need to enable it on mac even if screen is not retina?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is ready to merge
Use an infinite canvas div to render lines. Offloading scrolling almost entirely to the GPU.