mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2024-12-28 18:46:18 +00:00
c/renderer: Use gray as idle image color.
This commit is contained in:
parent
01c479468c
commit
ba3b220ad2
1
doc/changes/compositor/mr.282.2.md
Normal file
1
doc/changes/compositor/mr.282.2.md
Normal file
|
@ -0,0 +1 @@
|
|||
renderer: Change the idle images colour from bright white to grey.
|
|
@ -547,7 +547,7 @@ renderer_init_dummy_images(struct comp_renderer *r)
|
|||
.baseArrayLayer = 0,
|
||||
.layerCount = 1};
|
||||
|
||||
VkClearColorValue color = {.float32 = {1, 1, 1, 1}};
|
||||
VkClearColorValue color = {.float32 = {0.3, 0.3, 0.3, 1}};
|
||||
|
||||
for (uint32_t i = 0; i < 2; i++) {
|
||||
vk_create_image_simple(
|
||||
|
|
Loading…
Reference in a new issue