mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
Auto merge of #21921 - servo:jdm-patch-6-1, r=gw3583
Use a depth buffer when embedding Servo on android. Webrender uses the z-buffer but does not check that it's present. We need to provide one for pages to render correctly. --- - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [x] These changes fix #21807 - [x] These changes do not require tests because there are no automated tests for embedding Servo in Firefox Reality. <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/21921) <!-- Reviewable:end -->
This commit is contained in:
commit
2d8cef30fa
1 changed files with 1 additions and 1 deletions
|
@ -136,7 +136,7 @@ public class ServoSurface {
|
|||
EGL14.EGL_GREEN_SIZE, 8,
|
||||
EGL14.EGL_BLUE_SIZE, 8,
|
||||
EGL14.EGL_ALPHA_SIZE, 8,
|
||||
EGL14.EGL_DEPTH_SIZE, 0,
|
||||
EGL14.EGL_DEPTH_SIZE, 24,
|
||||
EGL14.EGL_STENCIL_SIZE, 0,
|
||||
EGL14.EGL_NONE
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue