f1shel / Asuna

Asuna is a path tracer base on vulkan ray tracing pipeline with NVIDIA card.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

assert在linux下的编译有问题

f1shel opened this issue · comments

  ~GpuAlloc() {
    assert(m_released == true,
           "every resource which was allocated on GPU should call "
           "deinit() before it was deconstructed!");
  }

to

  ~GpuAlloc() {
    assert((m_released == true,
           "every resource which was allocated on GPU should call deinit() before it was deconstructed!"));
  }