// TestApp1.cpp : Defines the entry point for the application. // #ifdef _WIN32 #include "Win32/stdafx.h" #endif #include class TestApp1 : public DKApplication { DKObject window; DKObject renderThread; DKAtomicNumber32 runningRenderThread; public: void RenderThread(void) { DKObject device = DKGraphicsDevice::SharedInstance(); DKObject queue = device->CreateCommandQueue(); DKObject swapChain = queue->CreateSwapChain(window); DKTimer timer; timer.Reset(); DKLog("Render thread begin"); while (!runningRenderThread.CompareAndSet(0, 0)) { DKRenderPassDescriptor rpd = swapChain->CurrentRenderPassDescriptor(); double t = timer.Elapsed(); t = (cos(t) + 1.0) * 0.5; rpd.colorAttachments.Value(0).clearColor = DKColor(t, 0.0, 0.0, 0.0); DKObject buffer = queue->CreateCommandBuffer(); DKObject encoder = buffer->CreateRenderCommandEncoder(rpd); if (encoder) { // draw scene! encoder->EndEncoding(); buffer->Commit(); //buffer->WaitUntilCompleted(); swapChain->Present(); } else { } DKThread::Sleep(0.01); } DKLog("RenderThread terminating..."); } void OnInitialize(void) override { DKLog("%s", DKGL_FUNCTION_NAME); try { window = DKWindow::Create("DefaultWindow"); } catch (DKError& e) { DKLog("error? :%ls", (const wchar_t*)e.Description()); } window->Activate(); window->AddEventHandler(this, DKFunction([this](const DKWindow::WindowEvent& e) { if (e.type == DKWindow::WindowEvent::WindowClosed) DKApplication::Instance()->Terminate(0); }), NULL, NULL); runningRenderThread = 1; renderThread = DKThread::Create(DKFunction(this, &TestApp1::RenderThread)->Invocation()); } void OnTerminate(void) override { DKLog("%s", DKGL_FUNCTION_NAME); runningRenderThread = 0; renderThread->WaitTerminate(); renderThread = NULL; window = NULL; DKLog("Memory Pool Statistics"); size_t numBuckets = DKMemoryPoolNumberOfBuckets(); DKMemoryPoolBucketStatus* buckets = new DKMemoryPoolBucketStatus[numBuckets]; DKMemoryPoolQueryAllocationStatus(buckets, numBuckets); size_t usedBytes = 0; for (int i = 0; i < numBuckets; ++i) { if (buckets[i].totalChunks > 0) { DKLog("--> %5lu: %5lu/%5lu, usage: %.1f%%, used: %.1fKB, total: %.1fKB", buckets[i].chunkSize, buckets[i].usedChunks, buckets[i].totalChunks, double(buckets[i].usedChunks) / double(buckets[i].totalChunks) * 100.0, double(buckets[i].chunkSize * buckets[i].usedChunks) / 1024.0, double(buckets[i].chunkSize * buckets[i].totalChunks) / 1024.0 ); usedBytes += buckets[i].chunkSize * buckets[i].usedChunks; } } DKLog("MemoryPool Usage: %.1fMB / %.1fMB", double(usedBytes) / (1024 * 1024), double(DKMemoryPoolSize()) / (1024 * 1024)); delete[] buckets; } }; #ifdef _WIN32 int APIENTRY wWinMain(_In_ HINSTANCE hInstance, _In_opt_ HINSTANCE hPrevInstance, _In_ LPWSTR lpCmdLine, _In_ int nCmdShow) #else int main(int argc, const char * argv[]) #endif { TestApp1 app; DKPropertySet::SystemConfig().SetValue("AppDelegate", "AppDelegate"); DKPropertySet::SystemConfig().SetValue("GraphicsAPI", "Vulkan"); return app.Run(); }