2018-07-18 09:40:26 +00:00
|
|
|
// Copyright 2017 The Dawn Authors
|
2017-05-31 00:03:44 +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-05-31 00:03:44 +00:00
|
|
|
|
2018-12-10 19:47:22 +00:00
|
|
|
#include "utils/ComboRenderPipelineDescriptor.h"
|
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
|
|
|
|
2017-05-31 00:03:44 +00:00
|
|
|
#include <vector>
|
2018-08-13 06:23:27 +00:00
|
|
|
#include <glm/glm.hpp>
|
|
|
|
#include <glm/gtc/matrix_transform.hpp>
|
|
|
|
#include <glm/gtc/type_ptr.hpp>
|
2017-05-31 00:03:44 +00:00
|
|
|
|
2018-07-18 11:45:46 +00:00
|
|
|
dawn::Device device;
|
2017-05-31 00:03:44 +00:00
|
|
|
|
2018-07-18 11:45:46 +00:00
|
|
|
dawn::Buffer indexBuffer;
|
|
|
|
dawn::Buffer vertexBuffer;
|
|
|
|
dawn::Buffer planeBuffer;
|
|
|
|
dawn::Buffer cameraBuffer;
|
|
|
|
dawn::Buffer transformBuffer[2];
|
2017-05-31 00:03:44 +00:00
|
|
|
|
2018-07-18 11:45:46 +00:00
|
|
|
dawn::BindGroup cameraBindGroup;
|
|
|
|
dawn::BindGroup bindGroup[2];
|
|
|
|
dawn::BindGroup cubeTransformBindGroup[2];
|
2017-05-31 00:03:44 +00:00
|
|
|
|
2018-07-18 11:45:46 +00:00
|
|
|
dawn::Queue queue;
|
|
|
|
dawn::SwapChain swapchain;
|
|
|
|
dawn::TextureView depthStencilView;
|
|
|
|
dawn::RenderPipeline pipeline;
|
|
|
|
dawn::RenderPipeline planePipeline;
|
|
|
|
dawn::RenderPipeline reflectionPipeline;
|
2017-05-31 00:03:44 +00:00
|
|
|
|
|
|
|
void initBuffers() {
|
|
|
|
static const uint32_t indexData[6*6] = {
|
|
|
|
0, 1, 2,
|
|
|
|
0, 2, 3,
|
|
|
|
|
|
|
|
4, 5, 6,
|
|
|
|
4, 6, 7,
|
|
|
|
|
|
|
|
8, 9, 10,
|
|
|
|
8, 10, 11,
|
|
|
|
|
|
|
|
12, 13, 14,
|
|
|
|
12, 14, 15,
|
|
|
|
|
|
|
|
16, 17, 18,
|
|
|
|
16, 18, 19,
|
|
|
|
|
|
|
|
20, 21, 22,
|
|
|
|
20, 22, 23
|
|
|
|
};
|
2018-07-18 11:45:46 +00:00
|
|
|
indexBuffer = utils::CreateBufferFromData(device, indexData, sizeof(indexData), dawn::BufferUsageBit::Index);
|
2017-05-31 00:03:44 +00:00
|
|
|
|
|
|
|
static const float vertexData[6 * 4 * 6] = {
|
|
|
|
-1.0, -1.0, 1.0, 1.0, 0.0, 0.0,
|
|
|
|
1.0, -1.0, 1.0, 1.0, 0.0, 0.0,
|
|
|
|
1.0, 1.0, 1.0, 1.0, 0.0, 0.0,
|
|
|
|
-1.0, 1.0, 1.0, 1.0, 0.0, 0.0,
|
|
|
|
|
|
|
|
-1.0, -1.0, -1.0, 1.0, 1.0, 0.0,
|
|
|
|
-1.0, 1.0, -1.0, 1.0, 1.0, 0.0,
|
|
|
|
1.0, 1.0, -1.0, 1.0, 1.0, 0.0,
|
|
|
|
1.0, -1.0, -1.0, 1.0, 1.0, 0.0,
|
|
|
|
|
|
|
|
-1.0, 1.0, -1.0, 1.0, 0.0, 1.0,
|
|
|
|
-1.0, 1.0, 1.0, 1.0, 0.0, 1.0,
|
|
|
|
1.0, 1.0, 1.0, 1.0, 0.0, 1.0,
|
|
|
|
1.0, 1.0, -1.0, 1.0, 0.0, 1.0,
|
|
|
|
|
|
|
|
-1.0, -1.0, -1.0, 0.0, 1.0, 0.0,
|
|
|
|
1.0, -1.0, -1.0, 0.0, 1.0, 0.0,
|
|
|
|
1.0, -1.0, 1.0, 0.0, 1.0, 0.0,
|
|
|
|
-1.0, -1.0, 1.0, 0.0, 1.0, 0.0,
|
|
|
|
|
|
|
|
1.0, -1.0, -1.0, 0.0, 1.0, 1.0,
|
|
|
|
1.0, 1.0, -1.0, 0.0, 1.0, 1.0,
|
|
|
|
1.0, 1.0, 1.0, 0.0, 1.0, 1.0,
|
|
|
|
1.0, -1.0, 1.0, 0.0, 1.0, 1.0,
|
|
|
|
|
|
|
|
-1.0, -1.0, -1.0, 1.0, 1.0, 1.0,
|
|
|
|
-1.0, -1.0, 1.0, 1.0, 1.0, 1.0,
|
|
|
|
-1.0, 1.0, 1.0, 1.0, 1.0, 1.0,
|
|
|
|
-1.0, 1.0, -1.0, 1.0, 1.0, 1.0
|
|
|
|
};
|
2018-07-18 11:45:46 +00:00
|
|
|
vertexBuffer = utils::CreateBufferFromData(device, vertexData, sizeof(vertexData), dawn::BufferUsageBit::Vertex);
|
2017-05-31 00:03:44 +00:00
|
|
|
|
|
|
|
static const float planeData[6 * 4] = {
|
|
|
|
-2.0, -1.0, -2.0, 0.5, 0.5, 0.5,
|
|
|
|
2.0, -1.0, -2.0, 0.5, 0.5, 0.5,
|
|
|
|
2.0, -1.0, 2.0, 0.5, 0.5, 0.5,
|
|
|
|
-2.0, -1.0, 2.0, 0.5, 0.5, 0.5,
|
|
|
|
};
|
2018-07-18 11:45:46 +00:00
|
|
|
planeBuffer = utils::CreateBufferFromData(device, planeData, sizeof(planeData), dawn::BufferUsageBit::Vertex);
|
2017-05-31 00:03:44 +00:00
|
|
|
}
|
|
|
|
|
2017-06-02 18:31:53 +00:00
|
|
|
struct CameraData {
|
2017-05-31 00:03:44 +00:00
|
|
|
glm::mat4 view;
|
|
|
|
glm::mat4 proj;
|
|
|
|
} cameraData;
|
|
|
|
|
|
|
|
void init() {
|
2018-07-18 12:06:10 +00:00
|
|
|
device = CreateCppDawnDevice();
|
2017-05-31 00:03:44 +00:00
|
|
|
|
2018-06-15 00:26:27 +00:00
|
|
|
queue = device.CreateQueue();
|
2017-07-28 01:30:57 +00:00
|
|
|
swapchain = GetSwapChain(device);
|
2017-09-21 16:54:53 +00:00
|
|
|
swapchain.Configure(GetPreferredSwapChainTextureFormat(),
|
2018-07-18 11:45:46 +00:00
|
|
|
dawn::TextureUsageBit::OutputAttachment, 640, 480);
|
2017-05-31 00:03:44 +00:00
|
|
|
|
|
|
|
initBuffers();
|
|
|
|
|
2018-07-18 11:45:46 +00:00
|
|
|
dawn::ShaderModule vsModule = utils::CreateShaderModule(device, dawn::ShaderStage::Vertex, R"(
|
2017-05-31 00:03:44 +00:00
|
|
|
#version 450
|
|
|
|
layout(set = 0, binding = 0) uniform cameraData {
|
|
|
|
mat4 view;
|
|
|
|
mat4 proj;
|
|
|
|
} camera;
|
|
|
|
layout(set = 0, binding = 1) uniform modelData {
|
|
|
|
mat4 modelMatrix;
|
|
|
|
};
|
|
|
|
layout(location = 0) in vec3 pos;
|
|
|
|
layout(location = 1) in vec3 col;
|
|
|
|
layout(location = 2) out vec3 f_col;
|
|
|
|
void main() {
|
|
|
|
f_col = col;
|
|
|
|
gl_Position = camera.proj * camera.view * modelMatrix * vec4(pos, 1.0);
|
|
|
|
})"
|
|
|
|
);
|
|
|
|
|
2018-07-18 11:45:46 +00:00
|
|
|
dawn::ShaderModule fsModule = utils::CreateShaderModule(device, dawn::ShaderStage::Fragment, R"(
|
2017-05-31 00:03:44 +00:00
|
|
|
#version 450
|
|
|
|
layout(location = 2) in vec3 f_col;
|
2017-08-29 17:37:45 +00:00
|
|
|
layout(location = 0) out vec4 fragColor;
|
2017-05-31 00:03:44 +00:00
|
|
|
void main() {
|
|
|
|
fragColor = vec4(f_col, 1.0);
|
2017-08-29 17:37:45 +00:00
|
|
|
})");
|
2017-05-31 00:03:44 +00:00
|
|
|
|
2018-07-18 11:45:46 +00:00
|
|
|
dawn::ShaderModule fsReflectionModule =
|
|
|
|
utils::CreateShaderModule(device, dawn::ShaderStage::Fragment, R"(
|
2017-05-31 00:03:44 +00:00
|
|
|
#version 450
|
|
|
|
layout(location = 2) in vec3 f_col;
|
2017-08-29 17:37:45 +00:00
|
|
|
layout(location = 0) out vec4 fragColor;
|
2017-05-31 00:03:44 +00:00
|
|
|
void main() {
|
|
|
|
fragColor = vec4(mix(f_col, vec3(0.5, 0.5, 0.5), 0.5), 1.0);
|
2017-08-29 17:37:45 +00:00
|
|
|
})");
|
2017-05-31 00:03:44 +00:00
|
|
|
|
2019-02-14 00:35:39 +00:00
|
|
|
dawn::VertexAttributeDescriptor attribute1;
|
|
|
|
attribute1.shaderLocation = 0;
|
|
|
|
attribute1.inputSlot = 0;
|
|
|
|
attribute1.offset = 0;
|
|
|
|
attribute1.format = dawn::VertexFormat::FloatR32G32B32;
|
|
|
|
|
|
|
|
dawn::VertexAttributeDescriptor attribute2;
|
|
|
|
attribute2.shaderLocation = 1;
|
|
|
|
attribute2.inputSlot = 0;
|
|
|
|
attribute2.offset = 3 * sizeof(float);
|
|
|
|
attribute2.format = dawn::VertexFormat::FloatR32G32B32;
|
|
|
|
|
2019-02-14 23:56:07 +00:00
|
|
|
dawn::VertexInputDescriptor input;
|
|
|
|
input.inputSlot = 0;
|
|
|
|
input.stride = 6 * sizeof(float);
|
|
|
|
input.stepMode = dawn::InputStepMode::Vertex;
|
|
|
|
|
2017-05-31 00:03:44 +00:00
|
|
|
auto inputState = device.CreateInputStateBuilder()
|
2019-02-14 00:35:39 +00:00
|
|
|
.SetAttribute(&attribute1)
|
|
|
|
.SetAttribute(&attribute2)
|
2019-02-14 23:56:07 +00:00
|
|
|
.SetInput(&input)
|
2019-02-14 00:35:39 +00:00
|
|
|
.GetResult();
|
2017-05-31 00:03:44 +00:00
|
|
|
|
2018-07-10 19:23:50 +00:00
|
|
|
auto bgl = utils::MakeBindGroupLayout(
|
|
|
|
device, {
|
2018-07-18 11:45:46 +00:00
|
|
|
{0, dawn::ShaderStageBit::Vertex, dawn::BindingType::UniformBuffer},
|
|
|
|
{1, dawn::ShaderStageBit::Vertex, dawn::BindingType::UniformBuffer},
|
2018-07-10 19:23:50 +00:00
|
|
|
});
|
2017-05-31 00:03:44 +00:00
|
|
|
|
2018-07-18 11:45:46 +00:00
|
|
|
dawn::PipelineLayout pl = utils::MakeBasicPipelineLayout(device, &bgl);
|
2017-05-31 00:03:44 +00:00
|
|
|
|
2018-08-22 13:37:29 +00:00
|
|
|
dawn::BufferDescriptor cameraBufDesc;
|
|
|
|
cameraBufDesc.size = sizeof(CameraData);
|
|
|
|
cameraBufDesc.usage = dawn::BufferUsageBit::TransferDst | dawn::BufferUsageBit::Uniform;
|
|
|
|
cameraBuffer = device.CreateBuffer(&cameraBufDesc);
|
2017-05-31 00:03:44 +00:00
|
|
|
|
|
|
|
glm::mat4 transform(1.0);
|
2018-07-18 11:45:46 +00:00
|
|
|
transformBuffer[0] = utils::CreateBufferFromData(device, &transform, sizeof(glm::mat4), dawn::BufferUsageBit::Uniform);
|
2017-05-31 00:03:44 +00:00
|
|
|
|
|
|
|
transform = glm::translate(transform, glm::vec3(0.f, -2.f, 0.f));
|
2018-07-18 11:45:46 +00:00
|
|
|
transformBuffer[1] = utils::CreateBufferFromData(device, &transform, sizeof(glm::mat4), dawn::BufferUsageBit::Uniform);
|
2017-05-31 00:03:44 +00:00
|
|
|
|
2018-12-05 07:18:30 +00:00
|
|
|
bindGroup[0] = utils::MakeBindGroup(device, bgl, {
|
2018-12-07 12:31:53 +00:00
|
|
|
{0, cameraBuffer, 0, sizeof(CameraData)},
|
|
|
|
{1, transformBuffer[0], 0, sizeof(glm::mat4)}
|
2018-12-05 07:18:30 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
bindGroup[1] = utils::MakeBindGroup(device, bgl, {
|
2018-12-07 12:31:53 +00:00
|
|
|
{0, cameraBuffer, 0, sizeof(CameraData)},
|
|
|
|
{1, transformBuffer[1], 0, sizeof(glm::mat4)}
|
2018-12-05 07:18:30 +00:00
|
|
|
});
|
2017-05-31 00:03:44 +00:00
|
|
|
|
2017-07-28 01:30:57 +00:00
|
|
|
depthStencilView = CreateDefaultDepthStencilView(device);
|
2017-05-31 00:03:44 +00:00
|
|
|
|
2018-12-10 19:47:22 +00:00
|
|
|
utils::ComboRenderPipelineDescriptor descriptor(device);
|
|
|
|
descriptor.layout = pl;
|
|
|
|
descriptor.cVertexStage.module = vsModule;
|
|
|
|
descriptor.cFragmentStage.module = fsModule;
|
|
|
|
descriptor.inputState = inputState;
|
2019-02-15 02:20:57 +00:00
|
|
|
descriptor.depthStencilState = &descriptor.cDepthStencilState;
|
|
|
|
descriptor.cDepthStencilState.format = dawn::TextureFormat::D32FloatS8Uint;
|
|
|
|
descriptor.cColorStates[0].format = GetPreferredSwapChainTextureFormat();
|
2019-01-04 04:28:37 +00:00
|
|
|
descriptor.cDepthStencilState.depthWriteEnabled = true;
|
|
|
|
descriptor.cDepthStencilState.depthCompare = dawn::CompareFunction::Less;
|
2018-12-10 19:47:22 +00:00
|
|
|
|
|
|
|
pipeline = device.CreateRenderPipeline(&descriptor);
|
2017-05-31 00:03:44 +00:00
|
|
|
|
2018-12-10 19:47:22 +00:00
|
|
|
utils::ComboRenderPipelineDescriptor pDescriptor(device);
|
|
|
|
pDescriptor.layout = pl;
|
|
|
|
pDescriptor.cVertexStage.module = vsModule;
|
|
|
|
pDescriptor.cFragmentStage.module = fsModule;
|
|
|
|
pDescriptor.inputState = inputState;
|
2019-02-15 02:20:57 +00:00
|
|
|
pDescriptor.depthStencilState = &pDescriptor.cDepthStencilState;
|
|
|
|
pDescriptor.cDepthStencilState.format = dawn::TextureFormat::D32FloatS8Uint;
|
|
|
|
pDescriptor.cColorStates[0].format = GetPreferredSwapChainTextureFormat();
|
2019-01-30 21:11:43 +00:00
|
|
|
pDescriptor.cDepthStencilState.stencilFront.passOp = dawn::StencilOperation::Replace;
|
|
|
|
pDescriptor.cDepthStencilState.stencilBack.passOp = dawn::StencilOperation::Replace;
|
2019-01-04 04:28:37 +00:00
|
|
|
pDescriptor.cDepthStencilState.depthCompare = dawn::CompareFunction::Less;
|
2018-12-10 19:47:22 +00:00
|
|
|
|
|
|
|
planePipeline = device.CreateRenderPipeline(&pDescriptor);
|
2017-05-31 00:03:44 +00:00
|
|
|
|
2018-12-10 19:47:22 +00:00
|
|
|
utils::ComboRenderPipelineDescriptor rfDescriptor(device);
|
|
|
|
rfDescriptor.layout = pl;
|
|
|
|
rfDescriptor.cVertexStage.module = vsModule;
|
|
|
|
rfDescriptor.cFragmentStage.module = fsReflectionModule;
|
|
|
|
rfDescriptor.inputState = inputState;
|
2019-02-15 02:20:57 +00:00
|
|
|
rfDescriptor.depthStencilState = &rfDescriptor.cDepthStencilState;
|
|
|
|
rfDescriptor.cDepthStencilState.format = dawn::TextureFormat::D32FloatS8Uint;
|
|
|
|
rfDescriptor.cColorStates[0].format = GetPreferredSwapChainTextureFormat();
|
2019-02-14 08:05:37 +00:00
|
|
|
rfDescriptor.cDepthStencilState.stencilFront.compare = dawn::CompareFunction::Equal;
|
|
|
|
rfDescriptor.cDepthStencilState.stencilBack.compare = dawn::CompareFunction::Equal;
|
|
|
|
rfDescriptor.cDepthStencilState.stencilFront.passOp = dawn::StencilOperation::Replace;
|
|
|
|
rfDescriptor.cDepthStencilState.stencilBack.passOp = dawn::StencilOperation::Replace;
|
2019-01-04 04:28:37 +00:00
|
|
|
rfDescriptor.cDepthStencilState.depthWriteEnabled = true;
|
|
|
|
rfDescriptor.cDepthStencilState.depthCompare = dawn::CompareFunction::Less;
|
2018-12-10 19:47:22 +00:00
|
|
|
|
|
|
|
reflectionPipeline = device.CreateRenderPipeline(&rfDescriptor);
|
2017-05-31 00:03:44 +00:00
|
|
|
|
|
|
|
cameraData.proj = glm::perspective(glm::radians(45.0f), 1.f, 1.0f, 100.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct {uint32_t a; float b;} s;
|
|
|
|
void frame() {
|
|
|
|
s.a = (s.a + 1) % 256;
|
2017-07-11 01:44:06 +00:00
|
|
|
s.b += 0.01f;
|
2017-05-31 00:03:44 +00:00
|
|
|
if (s.b >= 1.0f) {s.b = 0.0f;}
|
|
|
|
static const uint32_t vertexBufferOffsets[1] = {0};
|
|
|
|
|
|
|
|
cameraData.view = glm::lookAt(
|
|
|
|
glm::vec3(8.f * std::sin(glm::radians(s.b * 360.f)), 2.f, 8.f * std::cos(glm::radians(s.b * 360.f))),
|
|
|
|
glm::vec3(0.0f, 0.0f, 0.0f),
|
2018-07-03 12:43:46 +00:00
|
|
|
glm::vec3(0.0f, -1.0f, 0.0f)
|
2017-05-31 00:03:44 +00:00
|
|
|
);
|
|
|
|
|
2018-02-04 16:07:02 +00:00
|
|
|
cameraBuffer.SetSubData(0, sizeof(CameraData), reinterpret_cast<uint8_t*>(&cameraData));
|
2017-05-31 00:03:44 +00:00
|
|
|
|
2018-07-18 11:45:46 +00:00
|
|
|
dawn::Texture backbuffer;
|
|
|
|
dawn::RenderPassDescriptor renderPass;
|
2018-05-11 17:04:44 +00:00
|
|
|
GetNextRenderPassDescriptor(device, swapchain, depthStencilView, &backbuffer, &renderPass);
|
2017-07-28 01:30:57 +00:00
|
|
|
|
2019-02-15 12:54:08 +00:00
|
|
|
dawn::CommandEncoder encoder = device.CreateCommandEncoder();
|
2018-09-21 00:24:37 +00:00
|
|
|
{
|
2019-02-15 12:54:08 +00:00
|
|
|
dawn::RenderPassEncoder pass = encoder.BeginRenderPass(renderPass);
|
2018-12-21 10:40:26 +00:00
|
|
|
pass.SetPipeline(pipeline);
|
2018-09-21 00:24:37 +00:00
|
|
|
pass.SetBindGroup(0, bindGroup[0]);
|
|
|
|
pass.SetVertexBuffers(0, 1, &vertexBuffer, vertexBufferOffsets);
|
|
|
|
pass.SetIndexBuffer(indexBuffer, 0);
|
2018-12-13 01:05:26 +00:00
|
|
|
pass.DrawIndexed(36, 1, 0, 0, 0);
|
2018-09-21 00:24:37 +00:00
|
|
|
|
|
|
|
pass.SetStencilReference(0x1);
|
2018-12-21 10:40:26 +00:00
|
|
|
pass.SetPipeline(planePipeline);
|
2018-09-21 00:24:37 +00:00
|
|
|
pass.SetBindGroup(0, bindGroup[0]);
|
|
|
|
pass.SetVertexBuffers(0, 1, &planeBuffer, vertexBufferOffsets);
|
2018-12-13 01:05:26 +00:00
|
|
|
pass.DrawIndexed(6, 1, 0, 0, 0);
|
2018-09-21 00:24:37 +00:00
|
|
|
|
2018-12-21 10:40:26 +00:00
|
|
|
pass.SetPipeline(reflectionPipeline);
|
2018-09-21 00:24:37 +00:00
|
|
|
pass.SetVertexBuffers(0, 1, &vertexBuffer, vertexBufferOffsets);
|
|
|
|
pass.SetBindGroup(0, bindGroup[1]);
|
2018-12-13 01:05:26 +00:00
|
|
|
pass.DrawIndexed(36, 1, 0, 0, 0);
|
2018-09-21 00:24:37 +00:00
|
|
|
|
|
|
|
pass.EndPass();
|
|
|
|
}
|
2017-05-31 00:03:44 +00:00
|
|
|
|
2019-02-15 12:54:08 +00:00
|
|
|
dawn::CommandBuffer commands = encoder.Finish();
|
2017-05-31 00:03:44 +00:00
|
|
|
queue.Submit(1, &commands);
|
2017-07-28 01:30:57 +00:00
|
|
|
swapchain.Present(backbuffer);
|
|
|
|
DoFlush();
|
2017-05-31 00:03:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, const char* argv[]) {
|
2017-06-19 17:15:13 +00:00
|
|
|
if (!InitSample(argc, argv)) {
|
2017-05-31 00:03:44 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
init();
|
|
|
|
|
|
|
|
while (!ShouldQuit()) {
|
|
|
|
frame();
|
2017-07-17 21:13:57 +00:00
|
|
|
utils::USleep(16000);
|
2017-05-31 00:03:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO release stuff
|
|
|
|
}
|