Home
last modified time | relevance | path

Searched refs:mLayout (Results 1 – 14 of 14) sorted by relevance

/third_party/skia/third_party/externals/dawn/src/dawn_native/
DBindGroup.cpp339 mLayout(descriptor->layout), in BindGroupBase()
340 mBindingData(mLayout->ComputeBindingDataPointers(bindingDataStart)) { in BindGroupBase()
341 for (BindingIndex i{0}; i < mLayout->GetBindingCount(); ++i) { in BindGroupBase()
352 ASSERT(bindingIndex < mLayout->GetBindingCount()); in BindGroupBase()
409 if (mLayout != nullptr) { in DestroyImpl()
411 for (BindingIndex i{0}; i < mLayout->GetBindingCount(); ++i) { in DestroyImpl()
421 Ref<BindGroupLayoutBase> layout = mLayout; in DeleteThis()
440 return mLayout.Get(); in GetLayout()
445 return mLayout.Get(); in GetLayout()
455 ASSERT(bindingIndex < mLayout->GetBindingCount()); in GetBindingAsBufferBinding()
[all …]
DPipeline.cpp109 : ApiObjectBase(device, label), mLayout(layout) { in PipelineBase()
160 return mLayout.Get(); in GetLayout()
165 return mLayout.Get(); in GetLayout()
189 DAWN_TRY(GetDevice()->ValidateObject(mLayout.Get())); in ValidateGetBindGroupLayout()
202 if (!mLayout->GetBindGroupLayoutsMask()[groupIndex]) { in GetBindGroupLayout()
205 return Ref<BindGroupLayoutBase>(mLayout->GetBindGroupLayout(groupIndex)); in GetBindGroupLayout()
221 recorder.Record(mLayout->GetContentHash()); in ComputeContentHash()
235 if (a->mLayout.Get() != b->mLayout.Get() || a->mStageMask != b->mStageMask) { in EqualForCache()
DBindGroup.h86 Ref<BindGroupLayoutBase> mLayout; variable
DPipeline.h92 Ref<PipelineLayoutBase> mLayout; variable
/third_party/flutter/skia/platform_tools/android/apps/viewer/src/main/java/org/skia/viewer/
DStateAdapter.java45 private LinearLayout mLayout; field in StateAdapter
61 if (mLayout != null) { in setState()
91 if (mLayout == null) { in getView()
92 mLayout = new LinearLayout(mViewerActivity); in getView()
93 mLayout.setOrientation(LinearLayout.VERTICAL); in getView()
96 return mLayout; in getView()
169 if (mStateJson.length() < mLayout.getChildCount()) { in updateDrawer()
170 mLayout.removeViews( in updateDrawer()
171 mStateJson.length(), mLayout.getChildCount() - mStateJson.length()); in updateDrawer()
175 View childView = mLayout.getChildAt(i); in updateDrawer()
[all …]
/third_party/skia/platform_tools/android/apps/viewer/src/main/java/org/skia/viewer/
DStateAdapter.java45 private LinearLayout mLayout; field in StateAdapter
61 if (mLayout != null) { in setState()
91 if (mLayout == null) { in getView()
92 mLayout = new LinearLayout(mViewerActivity); in getView()
93 mLayout.setOrientation(LinearLayout.VERTICAL); in getView()
96 return mLayout; in getView()
169 if (mStateJson.length() < mLayout.getChildCount()) { in updateDrawer()
170 mLayout.removeViews( in updateDrawer()
171 mStateJson.length(), mLayout.getChildCount() - mStateJson.length()); in updateDrawer()
175 View childView = mLayout.getChildAt(i); in updateDrawer()
[all …]
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/
DBindGroup.cpp162 : ObjectBase(device), mLayout(descriptor->layout) { in BindGroupBase()
207 return mLayout.Get(); in GetLayout()
213 ASSERT(mLayout->GetBindingInfo().mask[binding]); in GetBindingAsBufferBinding()
214 ASSERT(mLayout->GetBindingInfo().types[binding] == dawn::BindingType::UniformBuffer || in GetBindingAsBufferBinding()
215 mLayout->GetBindingInfo().types[binding] == dawn::BindingType::StorageBuffer); in GetBindingAsBufferBinding()
223 ASSERT(mLayout->GetBindingInfo().mask[binding]); in GetBindingAsSampler()
224 ASSERT(mLayout->GetBindingInfo().types[binding] == dawn::BindingType::Sampler); in GetBindingAsSampler()
231 ASSERT(mLayout->GetBindingInfo().mask[binding]); in GetBindingAsTextureView()
232 ASSERT(mLayout->GetBindingInfo().types[binding] == dawn::BindingType::SampledTexture); in GetBindingAsTextureView()
DPipeline.cpp46 : ObjectBase(device), mStageMask(stages), mLayout(layout) { in PipelineBase()
60 return mLayout.Get(); in GetLayout()
65 return mLayout.Get(); in GetLayout()
DPipeline.h48 Ref<PipelineLayoutBase> mLayout; variable
DBindGroup.h55 Ref<BindGroupLayoutBase> mLayout; variable
/third_party/flutter/engine/flutter/shell/platform/android/io/flutter/plugin/editing/
DInputConnectionAdaptor.java32 private final Layout mLayout; field in InputConnectionAdaptor
49mLayout = new DynamicLayout(mEditable, new TextPaint(), Integer.MAX_VALUE, Layout.Alignment.ALIGN_… in InputConnectionAdaptor()
170 boolean isRtl = mLayout.isRtlCharAt(mLayout.getLineForOffset(selStart)); in sendKeyEvent()
173 Selection.extendRight(mEditable, mLayout); in sendKeyEvent()
175 Selection.extendLeft(mEditable, mLayout); in sendKeyEvent()
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/
DDescriptorSetAllocator.cpp37 : ObjectBase(layout->GetDevice()), mLayout(layout) { in DescriptorSetAllocator()
154 std::vector<VkDescriptorSetLayout> layouts(mMaxSets, mLayout->GetHandle()); in AllocateDescriptorPool()
DDescriptorSetAllocator.h52 BindGroupLayout* mLayout; variable
/third_party/flutter/skia/third_party/externals/sdl/android-project/src/org/libsdl/app/
DSDLActivity.java54 protected static ViewGroup mLayout; field in SDLActivity
106 mLayout = null; in initialize()
176 mLayout = new RelativeLayout(this); in onCreate()
177 mLayout.addView(mSurface); in onCreate()
179 setContentView(mLayout); in onCreate()
519 mLayout.addView(mTextEdit, params); in run()