MCPcopy Create free account
hub / github.com/RenderKit/embree / run

Method run

tutorials/verify/verify.cpp:769–782  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

767 : VerifyApplication::Test(name,isa,VerifyApplication::TEST_SHOULD_PASS) {}
768
769 VerifyApplication::TestReturnValue run(VerifyApplication* state, bool silent)
770 {
771 std::string cfg = state->rtcore + ",isa="+stringOfISA(isa);
772 RTCDevice device1 = rtcNewDevice(cfg.c_str());
773 AssertNoError(device1);
774 RTCDevice device2 = rtcNewDevice(cfg.c_str());
775 AssertNoError(device2);
776 RTCDevice device3 = rtcNewDevice(cfg.c_str());
777 AssertNoError(device3);
778 rtcReleaseDevice(device1);
779 rtcReleaseDevice(device3);
780 rtcReleaseDevice(device2);
781 return VerifyApplication::PASSED;
782 }
783 };
784
785 struct GetBoundsTest : public VerifyApplication::Test

Callers

nothing calls this directly

Calls 5

stringOfISAFunction · 0.85
rtcNewDeviceFunction · 0.85
AssertNoErrorFunction · 0.85
rtcReleaseDeviceFunction · 0.85
c_strMethod · 0.45

Tested by

no test coverage detected