Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(170)

Issue 1848833005: First pass at VulkanViewer (Closed)

Created:
4 years, 8 months ago by jvanverth1
Modified:
4 years, 8 months ago
Reviewers:
bsalomon, egdaniel
CC:
reviews_skia.org
Base URL:
https://skia.googlesource.com/skia.git@master
Target Ref:
refs/heads/master
Project:
skia
Visibility:
Public.

Description

Patch Set 1 #

Patch Set 2 : Swapping working #

Patch Set 3 : Fix file endings #

Patch Set 4 : Revise setup and event handling #

Total comments: 54

Patch Set 5 : Add VulkanTestContext_win #

Total comments: 1

Patch Set 6 : Address comments, plus add GM rendering #

Total comments: 2
Unified diffs Side-by-side diffs Delta from patch set Stats (+1585 lines, -13 lines) Patch
M gyp/most.gyp View 2 chunks +7 lines, -0 lines 0 comments Download
A + gyp/vulkanviewer.gyp View 1 2 3 4 5 1 chunk +12 lines, -7 lines 2 comments Download
M src/gpu/vk/GrVkBackendContext.cpp View 1 2 3 4 5 4 chunks +7 lines, -2 lines 0 comments Download
M src/gpu/vk/GrVkGpu.cpp View 1 2 3 4 5 1 chunk +2 lines, -2 lines 0 comments Download
M src/gpu/vk/GrVkUtil.h View 1 chunk +5 lines, -0 lines 0 comments Download
M src/gpu/vk/GrVkUtil.cpp View 4 chunks +57 lines, -2 lines 0 comments Download
A tools/vulkan/Application.h View 1 2 3 1 chunk +20 lines, -0 lines 0 comments Download
A tools/vulkan/VulkanTestContext.h View 1 2 3 4 5 1 chunk +92 lines, -0 lines 0 comments Download
A tools/vulkan/VulkanTestContext.cpp View 1 2 3 4 5 1 chunk +605 lines, -0 lines 0 comments Download
A tools/vulkan/Window.h View 1 2 3 4 5 1 chunk +73 lines, -0 lines 0 comments Download
A tools/vulkan/Window.cpp View 1 2 3 4 5 1 chunk +52 lines, -0 lines 0 comments Download
A tools/vulkan/viewer/InputHandler.h View 1 2 3 4 5 1 chunk +84 lines, -0 lines 0 comments Download
A tools/vulkan/viewer/InputHandler.cpp View 1 2 3 4 5 1 chunk +48 lines, -0 lines 0 comments Download
A tools/vulkan/viewer/VulkanViewer.h View 1 2 3 4 5 1 chunk +37 lines, -0 lines 0 comments Download
A tools/vulkan/viewer/VulkanViewer.cpp View 1 2 3 4 5 1 chunk +94 lines, -0 lines 0 comments Download
A tools/vulkan/win/VulkanTestContext_win.h View 1 2 3 4 1 chunk +24 lines, -0 lines 0 comments Download
A tools/vulkan/win/VulkanTestContext_win.cpp View 1 2 3 4 1 chunk +47 lines, -0 lines 0 comments Download
A tools/vulkan/win/Window_win.h View 1 2 3 1 chunk +37 lines, -0 lines 0 comments Download
A tools/vulkan/win/Window_win.cpp View 1 2 3 1 chunk +206 lines, -0 lines 0 comments Download
A tools/vulkan/win/main_win.cpp View 1 2 3 4 5 1 chunk +76 lines, -0 lines 0 comments Download

Messages

Total messages: 16 (4 generated)
jvanverth1
So here's my mostly working code for the viewer. There's still a fair amount I ...
4 years, 8 months ago (2016-04-04 20:15:40 UTC) #3
bsalomon
Looks like a nice start! https://codereview.chromium.org/1848833005/diff/60001/include/gpu/vk/GrVkBackendContext.h File include/gpu/vk/GrVkBackendContext.h (left): https://codereview.chromium.org/1848833005/diff/60001/include/gpu/vk/GrVkBackendContext.h#oldcode52 include/gpu/vk/GrVkBackendContext.h:52: SkAutoTUnref<const GrVkInterface> fInterface; was ...
4 years, 8 months ago (2016-04-05 14:24:44 UTC) #4
egdaniel
https://codereview.chromium.org/1848833005/diff/60001/src/gpu/vk/GrVkMemory.cpp File src/gpu/vk/GrVkMemory.cpp (right): https://codereview.chromium.org/1848833005/diff/60001/src/gpu/vk/GrVkMemory.cpp#newcode121 src/gpu/vk/GrVkMemory.cpp:121: } else if (VK_IMAGE_LAYOUT_PRESENT_SRC_KHR == layout) { We should ...
4 years, 8 months ago (2016-04-05 16:50:28 UTC) #5
jvanverth1
https://codereview.chromium.org/1848833005/diff/60001/include/gpu/vk/GrVkBackendContext.h File include/gpu/vk/GrVkBackendContext.h (left): https://codereview.chromium.org/1848833005/diff/60001/include/gpu/vk/GrVkBackendContext.h#oldcode52 include/gpu/vk/GrVkBackendContext.h:52: SkAutoTUnref<const GrVkInterface> fInterface; On 2016/04/05 14:24:43, bsalomon wrote: > ...
4 years, 8 months ago (2016-04-05 18:16:49 UTC) #6
bsalomon
https://codereview.chromium.org/1848833005/diff/60001/tools/vulkan/Window.h File tools/vulkan/Window.h (right): https://codereview.chromium.org/1848833005/diff/60001/tools/vulkan/Window.h#newcode23 tools/vulkan/Window.h:23: struct AttachmentInfo { Should sample count go into attachment ...
4 years, 8 months ago (2016-04-05 18:44:41 UTC) #7
bsalomon
lgtm https://codereview.chromium.org/1848833005/diff/100001/gyp/vulkanviewer.gyp File gyp/vulkanviewer.gyp (right): https://codereview.chromium.org/1848833005/diff/100001/gyp/vulkanviewer.gyp#newcode30 gyp/vulkanviewer.gyp:30: '<!@(python find.py ../tools/vulkan "*.cpp")', I should have thought ...
4 years, 8 months ago (2016-04-05 18:47:57 UTC) #8
jvanverth1
https://codereview.chromium.org/1848833005/diff/100001/gyp/vulkanviewer.gyp File gyp/vulkanviewer.gyp (right): https://codereview.chromium.org/1848833005/diff/100001/gyp/vulkanviewer.gyp#newcode30 gyp/vulkanviewer.gyp:30: '<!@(python find.py ../tools/vulkan "*.cpp")', On 2016/04/05 18:47:57, bsalomon wrote: ...
4 years, 8 months ago (2016-04-05 19:00:39 UTC) #9
bsalomon
On 2016/04/05 19:00:39, jvanverth1 wrote: > https://codereview.chromium.org/1848833005/diff/100001/gyp/vulkanviewer.gyp > File gyp/vulkanviewer.gyp (right): > > https://codereview.chromium.org/1848833005/diff/100001/gyp/vulkanviewer.gyp#newcode30 > ...
4 years, 8 months ago (2016-04-05 19:44:16 UTC) #10
jvanverth1
On 2016/04/05 19:44:16, bsalomon wrote: > On 2016/04/05 19:00:39, jvanverth1 wrote: > > https://codereview.chromium.org/1848833005/diff/100001/gyp/vulkanviewer.gyp > ...
4 years, 8 months ago (2016-04-05 19:59:50 UTC) #11
bsalomon
On 2016/04/05 19:59:50, jvanverth1 wrote: > On 2016/04/05 19:44:16, bsalomon wrote: > > On 2016/04/05 ...
4 years, 8 months ago (2016-04-06 00:06:40 UTC) #12
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1848833005/100001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1848833005/100001
4 years, 8 months ago (2016-04-06 12:59:18 UTC) #14
commit-bot: I haz the power
4 years, 8 months ago (2016-04-06 13:09:04 UTC) #16
Message was sent while issue was closed.
Committed patchset #6 (id:100001) as
https://skia.googlesource.com/skia/+/9f37246d6856d40f916e8f1fff5b43cfdc42e567

Powered by Google App Engine
This is Rietveld 408576698