2018-07-18 09:40:26 +00:00
|
|
|
// Copyright 2017 The Dawn Authors
|
2017-04-20 18:38:20 +00:00
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2017-06-19 17:15:13 +00:00
|
|
|
#include "SampleUtils.h"
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2018-07-18 12:00:56 +00:00
|
|
|
#include "utils/DawnHelpers.h"
|
2017-07-17 21:13:57 +00:00
|
|
|
#include "utils/SystemUtils.h"
|
2017-06-19 17:09:41 +00:00
|
|
|
|
2018-07-18 13:12:52 +00:00
|
|
|
dawnDevice device;
|
|
|
|
dawnQueue queue;
|
|
|
|
dawnSwapChain swapchain;
|
|
|
|
dawnRenderPipeline pipeline;
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2018-07-18 13:12:52 +00:00
|
|
|
dawnTextureFormat swapChainFormat;
|
2018-01-19 17:51:18 +00:00
|
|
|
|
2017-04-20 18:38:20 +00:00
|
|
|
void init() {
|
2018-07-18 12:06:10 +00:00
|
|
|
device = CreateCppDawnDevice().Release();
|
2018-07-18 13:12:52 +00:00
|
|
|
queue = dawnDeviceCreateQueue(device);
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2017-07-28 01:30:57 +00:00
|
|
|
{
|
2018-07-18 13:12:52 +00:00
|
|
|
dawnSwapChainBuilder builder = dawnDeviceCreateSwapChainBuilder(device);
|
2017-07-28 01:30:57 +00:00
|
|
|
uint64_t swapchainImpl = GetSwapChainImplementation();
|
2018-07-18 13:12:52 +00:00
|
|
|
dawnSwapChainBuilderSetImplementation(builder, swapchainImpl);
|
|
|
|
swapchain = dawnSwapChainBuilderGetResult(builder);
|
|
|
|
dawnSwapChainBuilderRelease(builder);
|
2017-07-28 01:30:57 +00:00
|
|
|
}
|
2018-07-18 13:12:52 +00:00
|
|
|
swapChainFormat = static_cast<dawnTextureFormat>(GetPreferredSwapChainTextureFormat());
|
|
|
|
dawnSwapChainConfigure(swapchain, swapChainFormat, DAWN_TEXTURE_USAGE_BIT_OUTPUT_ATTACHMENT, 640,
|
2018-01-19 17:51:18 +00:00
|
|
|
480);
|
2017-07-28 01:30:57 +00:00
|
|
|
|
2017-04-20 18:38:20 +00:00
|
|
|
const char* vs =
|
|
|
|
"#version 450\n"
|
|
|
|
"const vec2 pos[3] = vec2[3](vec2(0.0f, 0.5f), vec2(-0.5f, -0.5f), vec2(0.5f, -0.5f));\n"
|
|
|
|
"void main() {\n"
|
|
|
|
" gl_Position = vec4(pos[gl_VertexIndex], 0.0, 1.0);\n"
|
|
|
|
"}\n";
|
2018-07-18 13:12:52 +00:00
|
|
|
dawnShaderModule vsModule = utils::CreateShaderModule(dawn::Device(device), dawn::ShaderStage::Vertex, vs).Release();
|
2017-04-20 18:38:20 +00:00
|
|
|
|
|
|
|
const char* fs =
|
|
|
|
"#version 450\n"
|
2017-08-29 17:37:45 +00:00
|
|
|
"layout(location = 0) out vec4 fragColor;"
|
2017-04-20 18:38:20 +00:00
|
|
|
"void main() {\n"
|
|
|
|
" fragColor = vec4(1.0, 0.0, 0.0, 1.0);\n"
|
|
|
|
"}\n";
|
2018-07-18 13:12:52 +00:00
|
|
|
dawnShaderModule fsModule = utils::CreateShaderModule(device, dawn::ShaderStage::Fragment, fs).Release();
|
2017-04-20 18:38:20 +00:00
|
|
|
|
|
|
|
{
|
2018-07-18 13:12:52 +00:00
|
|
|
dawnRenderPipelineBuilder builder = dawnDeviceCreateRenderPipelineBuilder(device);
|
|
|
|
dawnRenderPipelineBuilderSetColorAttachmentFormat(builder, 0, swapChainFormat);
|
|
|
|
dawnRenderPipelineBuilderSetStage(builder, DAWN_SHADER_STAGE_VERTEX, vsModule, "main");
|
|
|
|
dawnRenderPipelineBuilderSetStage(builder, DAWN_SHADER_STAGE_FRAGMENT, fsModule, "main");
|
|
|
|
pipeline = dawnRenderPipelineBuilderGetResult(builder);
|
|
|
|
dawnRenderPipelineBuilderRelease(builder);
|
2017-04-20 18:38:20 +00:00
|
|
|
}
|
|
|
|
|
2018-07-18 13:12:52 +00:00
|
|
|
dawnShaderModuleRelease(vsModule);
|
|
|
|
dawnShaderModuleRelease(fsModule);
|
2017-04-20 18:38:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void frame() {
|
2018-07-18 13:12:52 +00:00
|
|
|
dawnTexture backbuffer = dawnSwapChainGetNextTexture(swapchain);
|
|
|
|
dawnTextureView backbufferView;
|
2017-07-28 01:30:57 +00:00
|
|
|
{
|
2018-09-18 00:31:57 +00:00
|
|
|
backbufferView = dawnTextureCreateDefaultTextureView(backbuffer);
|
2017-07-28 01:30:57 +00:00
|
|
|
}
|
2018-07-18 13:12:52 +00:00
|
|
|
dawnRenderPassDescriptor renderpassInfo;
|
2017-07-28 01:30:57 +00:00
|
|
|
{
|
2018-07-18 13:12:52 +00:00
|
|
|
dawnRenderPassDescriptorBuilder builder = dawnDeviceCreateRenderPassDescriptorBuilder(device);
|
|
|
|
dawnRenderPassDescriptorBuilderSetColorAttachment(builder, 0, backbufferView, DAWN_LOAD_OP_CLEAR);
|
|
|
|
renderpassInfo = dawnRenderPassDescriptorBuilderGetResult(builder);
|
|
|
|
dawnRenderPassDescriptorBuilderRelease(builder);
|
2017-07-28 01:30:57 +00:00
|
|
|
}
|
2018-07-18 13:12:52 +00:00
|
|
|
dawnCommandBuffer commands;
|
2017-04-20 18:38:20 +00:00
|
|
|
{
|
2018-07-18 13:12:52 +00:00
|
|
|
dawnCommandBufferBuilder builder = dawnDeviceCreateCommandBufferBuilder(device);
|
2018-09-21 00:24:37 +00:00
|
|
|
|
|
|
|
dawnRenderPassEncoder pass = dawnCommandBufferBuilderBeginRenderPass(builder, renderpassInfo);
|
|
|
|
dawnRenderPassEncoderSetRenderPipeline(pass, pipeline);
|
|
|
|
dawnRenderPassEncoderDrawArrays(pass, 3, 1, 0, 0);
|
|
|
|
dawnRenderPassEncoderEndPass(pass);
|
|
|
|
dawnRenderPassEncoderRelease(pass);
|
|
|
|
|
2018-07-18 13:12:52 +00:00
|
|
|
commands = dawnCommandBufferBuilderGetResult(builder);
|
|
|
|
dawnCommandBufferBuilderRelease(builder);
|
2017-04-20 18:38:20 +00:00
|
|
|
}
|
|
|
|
|
2018-07-18 13:12:52 +00:00
|
|
|
dawnQueueSubmit(queue, 1, &commands);
|
|
|
|
dawnCommandBufferRelease(commands);
|
|
|
|
dawnSwapChainPresent(swapchain, backbuffer);
|
|
|
|
dawnRenderPassDescriptorRelease(renderpassInfo);
|
|
|
|
dawnTextureViewRelease(backbufferView);
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2017-07-28 01:30:57 +00:00
|
|
|
DoFlush();
|
2017-04-20 18:38:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, const char* argv[]) {
|
2017-06-19 17:15:13 +00:00
|
|
|
if (!InitSample(argc, argv)) {
|
2017-04-20 18:38:20 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
init();
|
|
|
|
|
|
|
|
while (!ShouldQuit()) {
|
|
|
|
frame();
|
2017-07-17 21:13:57 +00:00
|
|
|
utils::USleep(16000);
|
2017-04-20 18:38:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO release stuff
|
|
|
|
}
|