Add possibility to provide render delegate specific tokens to scene delegate #52

Merged
Bogdan Nagirniak merged 3 commits from BLEN-431 into hydra-render 2023-06-09 00:16:38 +02:00
2 changed files with 2 additions and 1 deletions
Showing only changes of commit 1daeb781f6 - Show all commits

View File

@ -3,8 +3,8 @@
#include <bitset> #include <bitset>
#include "BLI_set.hh"
#include "BKE_object.h" #include "BKE_object.h"
#include "BLI_set.hh"
#include "DEG_depsgraph_query.h" #include "DEG_depsgraph_query.h"
#include "DNA_scene_types.h" #include "DNA_scene_types.h"

View File

@ -149,6 +149,7 @@ pxr::VtValue LightData::get_data(pxr::TfToken const &key) const
if (ret_ptr) { if (ret_ptr) {
return *ret_ptr; return *ret_ptr;
} }
return pxr::VtValue(); return pxr::VtValue();
} }