aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Elliott <ianelliott@google.com>2017-03-28 11:10:18 -0600
committerMark Lobodzinski <mark@lunarg.com>2017-04-03 14:05:24 -0600
commit38bb01b5c2a5b35b8176763784fbd7302d127814 (patch)
treec038ddbfe37e0b91fa91433b0f92a33eec9311d7
parent53622a73349294f8a66edbac870cd25fe0c071a3 (diff)
downloadusermoji-38bb01b5c2a5b35b8176763784fbd7302d127814.tar.xz
demos: Remove DbgMsgs from incremental_present ext
The only DbgMsg messages left tell the user, if they use "--incremental_present", whether the functionality is actually being used, or if the VK_KHR_incremental_present extension isn't available. NOTE: When somebody wants to see all of the DbgMsg messages, they should use "git revert" with this commit. Change-Id: Ic4189cbec2a64c50135b16c331c808fbbce975dc
-rw-r--r--demos/cube.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/demos/cube.c b/demos/cube.c
index 65704730..10ec60d4 100644
--- a/demos/cube.c
+++ b/demos/cube.c
@@ -1075,19 +1075,6 @@ static void demo_draw(struct demo *demo) {
.pRegions = &region,
};
present.pNext = &regions;
- DbgMsg("present = %p, present.pNext = %p, regions = %p, regions.pNext = %p\n",
- &present,
- present.pNext,
- &regions,
- regions.pNext);
- DbgMsg("Present Rectangle has offset: (%d, %d) and extent: (%d, %d)\n",
- regions.pRegions->pRectangles->offset.x,
- regions.pRegions->pRectangles->offset.y,
- regions.pRegions->pRectangles->extent.width,
- regions.pRegions->pRectangles->extent.height);
- DbgMsg("regions = %p, regions.pRegions = %p, "
- "regions.pRegions->pRectangles = %p\n",
- &regions, regions.pRegions, regions.pRegions->pRectangles);
}
if (demo->VK_GOOGLE_display_timing_enabled) {