Home | History | Annotate | Download | only in libvulkan

Lines Matching refs:layer_

487 LayerRef::LayerRef(const Layer* layer) : layer_(layer) {}
490 if (layer_) {
491 LayerLibrary& library = g_layer_libraries[layer_->library_idx];
496 LayerRef::LayerRef(LayerRef&& other) : layer_(other.layer_) {
497 other.layer_ = nullptr;
501 return layer_ ? reinterpret_cast<PFN_vkGetInstanceProcAddr>(
502 GetLayerGetProcAddr(*layer_, "GetInstanceProcAddr", 19))
507 return layer_ ? reinterpret_cast<PFN_vkGetDeviceProcAddr>(
508 GetLayerGetProcAddr(*layer_, "GetDeviceProcAddr", 17))