Home
last modified time | relevance | path

Searched refs:bindings (Results 1 - 25 of 243) sorted by relevance

12345678910

/third_party/rust/crates/bindgen/bindgen-integration/src/
H A Dlib.rs3 mod bindings { modules
16 use bindings::testing::Bar; // This type is generated from module_raw_line.
22 let mut test = unsafe { bindings::Test_COUNTDOWN.as_ptr() }; in test_static_array()
23 let expected = unsafe { bindings::Test_countdown() }; in test_static_array()
24 let also_expected = unsafe { bindings::Test_COUNTDOWN_PTR }; in test_static_array()
44 let c_str = unsafe { bindings::Test::name() }; in test_static_method()
51 let test = unsafe { bindings::Test::new(5) }; in test_constructor()
58 let test = unsafe { bindings::Test::new1(5.0) }; in test_overload()
65 let mut first: bindings::bitfields::First = unsafe { mem::zeroed() }; in test_bitfields_first()
75 let mut second: bindings in test_bitfields_second()
[all...]
/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/
H A DMinimumBufferSizeValidationTests.cpp23 // Helper for describing bindings throughout the tests
71 // Creates a bind group with given bindings for shader text
72 std::string GenerateBindingString(const std::vector<BindingDescriptor>& bindings) { in GenerateBindingString() argument
75 for (const BindingDescriptor& b : bindings) { in GenerateBindingString()
96 std::string GenerateReferenceString(const std::vector<BindingDescriptor>& bindings, in GenerateReferenceString() argument
100 for (const BindingDescriptor& b : bindings) { in GenerateReferenceString()
115 // Creates a compute shader with given bindings
116 std::string CreateComputeShaderWithBindings(const std::vector<BindingDescriptor>& bindings) { in CreateComputeShaderWithBindings() argument
117 return kStructs + GenerateBindingString(bindings) + in CreateComputeShaderWithBindings()
119 GenerateReferenceString(bindings, wgp in CreateComputeShaderWithBindings()
123 CreateVertexShaderWithBindings(const std::vector<BindingDescriptor>& bindings) CreateVertexShaderWithBindings() argument
131 CreateFragmentShaderWithBindings(const std::vector<BindingDescriptor>& bindings) CreateFragmentShaderWithBindings() argument
137 CombineBindings( std::initializer_list<std::vector<BindingDescriptor>> bindings) CombineBindings() argument
215 CreateBindGroupLayout(const std::vector<BindingDescriptor>& bindings, const std::vector<uint64_t>& minimumSizes) CreateBindGroupLayout() argument
252 CreateBindGroup(wgpu::BindGroupLayout layout, const std::vector<BindingDescriptor>& bindings, const std::vector<uint64_t>& bindingSizes) CreateBindGroup() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
H A DVkPipelineLayout.cpp32 descriptorSets[0].bindings = bindingStorage; // Used in destroy() for deallocation. in PipelineLayout()
38 descriptorSets[i].bindings = bindingStorage; in PipelineLayout()
44 descriptorSets[i].bindings[j].descriptorType = setLayout->getDescriptorType(j); in PipelineLayout()
45 descriptorSets[i].bindings[j].offset = setLayout->getBindingOffset(j); in PipelineLayout()
46 descriptorSets[i].bindings[j].dynamicOffsetIndex = dynamicOffsetIndex; in PipelineLayout()
47 descriptorSets[i].bindings[j].descriptorCount = setLayout->getDescriptorCount(j); in PipelineLayout()
49 if(DescriptorSetLayout::IsDescriptorDynamic(descriptorSets[i].bindings[j].descriptorType)) in PipelineLayout()
65 vk::freeHostMemory(descriptorSets[0].bindings, pAllocator); // pushConstantRanges are in the same allocation in destroy()
72 vk::freeHostMemory(descriptorSets[0].bindings, pAllocator); // pushConstantRanges are in the same allocation in release()
103 return descriptorSets[setNumber].bindings[bindingNumbe in getDynamicOffsetIndex()
[all...]
H A DVkDescriptorSetLayout.cpp40 , bindings(reinterpret_cast<Binding *>(mem)) in DescriptorSetLayout()
51 // pCreateInfo->pBindings[] can have gaps in the binding numbers, so first initialize the entire bindings array. in DescriptorSetLayout()
55 bindings[i].descriptorType = VK_DESCRIPTOR_TYPE_SAMPLER; in DescriptorSetLayout()
56 bindings[i].descriptorCount = 0; in DescriptorSetLayout()
57 bindings[i].immutableSamplers = nullptr; in DescriptorSetLayout()
63 auto &dstBinding = bindings[srcBinding.binding]; in DescriptorSetLayout()
84 bindings[i].offset = offset; in DescriptorSetLayout()
85 offset += bindings[i].descriptorCount * GetDescriptorSize(bindings[i].descriptorType); in DescriptorSetLayout()
93 vk::freeHostMemory(bindings, pAllocato in destroy()
[all...]
/third_party/vk-gl-cts/modules/glshared/
H A DglsAttributeLocationTests.cpp66 deInt32 getBoundLocation (const map<string, deUint32>& bindings, const string& attrib) in getBoundLocation() argument
68 std::map<string, deUint32>::const_iterator iter = bindings.find(attrib); in getBoundLocation()
70 return (iter == bindings.end() ? (deInt32)Attribute::LOC_UNDEF : iter->second); in getBoundLocation()
73 bool hasAttributeAliasing (const vector<Attribute>& attributes, const map<string, deUint32>& bindings) in hasAttributeAliasing() argument
79 const deInt32 location = getBoundLocation(bindings, attributes[attribNdx].getName()); in hasAttributeAliasing()
602 bool checkAttribLocationQuery (TestLog& log, const glw::Functions& gl, deUint32 program, const vector<Attribute>& attributes, const map<string, deUint32>& bindings) in checkAttribLocationQuery() argument
609 const deInt32 expectedLocation = (attrib.getLayoutLocation() != Attribute::LOC_UNDEF ? attrib.getLayoutLocation() : getBoundLocation(bindings, attrib.getName())); in checkAttribLocationQuery()
631 bool checkQuery (TestLog& log, const glw::Functions& gl, deUint32 program, const vector<Attribute>& attributes, const map<string, deUint32>& bindings) in checkQuery() argument
635 if (!checkAttribLocationQuery(log, gl, program, attributes, bindings)) in checkQuery()
820 vector<Bind> bindings; in iterate() local
847 vector<Bind> bindings; iterate() local
882 vector<Bind> bindings; iterate() local
911 vector<Bind> bindings; iterate() local
949 vector<Bind> bindings; iterate() local
989 vector<Bind> bindings; iterate() local
1020 vector<Bind> bindings; iterate() local
1041 vector<Bind> bindings; iterate() local
1062 vector<Bind> bindings; iterate() local
1177 vector<Bind> bindings; iterate() local
1204 vector<Bind> bindings; iterate() local
1245 vector<Bind> bindings; iterate() local
1404 vector<Bind> bindings; iterate() local
1430 vector<Bind> bindings; iterate() local
1451 vector<Bind> bindings; iterate() local
1472 vector<Bind> bindings; iterate() local
1494 vector<Bind> bindings; iterate() local
[all...]
/third_party/skia/modules/canvaskit/
H A DMakefile132 bazelisk build :gm-bindings-wasm --compilation_mode opt --spawn_strategy=local \
138 cp ../../bazel-bin/modules/canvaskit/gm-bindings-wasm/gm-bindings.js build/gm-bindings.js
139 cp ../../bazel-bin/modules/canvaskit/gm-bindings-wasm/gm-bindings.wasm build/gm-bindings.wasm
143 bazelisk build :gm-bindings-wasm --compilation_mode dbg --spawn_strategy=local \
149 cp ../../bazel-bin/modules/canvaskit/gm-bindings-wasm/gm-bindings
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/
H A DvktApiMaintenance3Check.cpp371 // Create a vector of bindings by constructing the system limits and distributing descriptor counts.
399 vector<vk::VkDescriptorSetLayoutBinding> bindings; in calculateBindings() local
415 bindings.push_back(b); in calculateBindings()
421 size_t firstAdded = bindings.size(); in calculateBindings()
422 bindings.resize(firstAdded + tc.second.count); in calculateBindings()
425 vk::VkDescriptorSetLayoutBinding& b = bindings[firstAdded + i]; in calculateBindings()
436 return bindings; in calculateBindings()
440 string getBindingsDescription (const vector<VkDescriptorSetLayoutBinding>& bindings) in getBindingsDescription() argument
445 for (const auto& b : bindings) in getBindingsDescription()
664 vector<vk::VkDescriptorSetLayoutBinding> bindings in iterate() local
782 std::vector<VkDescriptorSetLayoutBinding> bindings; testCountLayoutSupport() local
[all...]
/third_party/skia/third_party/externals/dawn/src/dawn_native/
H A DBindGroup.cpp342 // TODO(enga): Shouldn't be needed when bindings are tightly packed. in BindGroupBase()
344 new (&mBindingData.bindings[i]) Ref<ObjectBase>(); in BindGroupBase()
358 ASSERT(mBindingData.bindings[bindingIndex] == nullptr); in BindGroupBase()
359 mBindingData.bindings[bindingIndex] = entry.buffer; in BindGroupBase()
369 ASSERT(mBindingData.bindings[bindingIndex] == nullptr); in BindGroupBase()
370 mBindingData.bindings[bindingIndex] = entry.textureView; in BindGroupBase()
375 ASSERT(mBindingData.bindings[bindingIndex] == nullptr); in BindGroupBase()
376 mBindingData.bindings[bindingIndex] = entry.sampler; in BindGroupBase()
383 ASSERT(mBindingData.bindings[bindingIndex] == nullptr); in BindGroupBase()
384 mBindingData.bindings[bindingInde in BindGroupBase()
[all...]
/third_party/rust/crates/bindgen/csmith-fuzzing/
H A Dpredicate.py15 First, `bindgen` is run on the input header. Then the emitted bindings are
16 compiled with `rustc`. Finally, the compiled bindings' layout tests are run.
25 behavior. In this mode, you might expect that the emitted bindings fail to
46 help="An argument string that `bindgen` should be invoked with. By default, all traits are derived. Note that the input header and output bindings file will automatically be provided by this script, and you should not manually specify them.")
75 help="Exit non-zero if `bindgen` successfully emits bindings.")
81 "--bindings-grep",
84 help="Exit non-zero if the given regexp pattern is not found in the emitted bindings.")
87 "--no-compile-bindings",
90 help="Do not attempt to compile the emitted bindings with `rustc`.")
94 help="Append the content of this extra file to the end of the emitted bindings jus
[all...]
/third_party/mesa3d/src/mesa/state_tracker/
H A Dst_format.c1071 unsigned bindings, in find_supported_format()
1076 if (!bindings || screen->is_format_supported(screen, formats[i], target, in find_supported_format()
1078 bindings)) { in find_supported_format()
1095 * The bindings parameter typically has PIPE_BIND_SAMPLER_VIEW set, plus
1098 * If bindings is zero, the driver doesn't need to support the returned format.
1102 * \param bindings bitmask of PIPE_BIND_x flags.
1113 unsigned bindings, bool swap_bytes, bool allow_dxt) in st_choose_format()
1122 && (bindings & ~PIPE_BIND_SAMPLER_VIEW)) { in st_choose_format()
1133 pf = st_choose_matching_format(st, bindings, format, type, in st_choose_format()
1137 (!bindings || scree in st_choose_format()
1066 find_supported_format(struct pipe_screen *screen, const enum pipe_format formats[], enum pipe_texture_target target, unsigned sample_count, unsigned storage_sample_count, unsigned bindings, boolean allow_dxt) find_supported_format() argument
1109 st_choose_format(struct st_context *st, GLenum internalFormat, GLenum format, GLenum type, enum pipe_texture_target target, unsigned sample_count, unsigned storage_sample_count, unsigned bindings, bool swap_bytes, bool allow_dxt) st_choose_format() argument
1254 unsigned bindings; st_ChooseTextureFormat() local
1473 unsigned bindings; st_QueryInternalFormat() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/api/
H A DvktApiMaintenance3Check.cpp370 // Create a vector of bindings by constructing the system limits and distributing descriptor counts.
398 vector<vk::VkDescriptorSetLayoutBinding> bindings; in calculateBindings() local
414 bindings.push_back(b); in calculateBindings()
420 size_t firstAdded = bindings.size(); in calculateBindings()
421 bindings.resize(firstAdded + tc.second.count); in calculateBindings()
424 vk::VkDescriptorSetLayoutBinding& b = bindings[firstAdded + i]; in calculateBindings()
435 return bindings; in calculateBindings()
439 string getBindingsDescription (const vector<VkDescriptorSetLayoutBinding>& bindings) in getBindingsDescription() argument
444 for (const auto& b : bindings) in getBindingsDescription()
663 vector<vk::VkDescriptorSetLayoutBinding> bindings in iterate() local
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
H A DVertexArrayGL.cpp355 const auto &bindings = mState.getVertexBindings(); in computeStreamingAttributeSizes() local
360 const auto &binding = bindings[attrib.bindingIndex]; in computeStreamingAttributeSizes()
430 const auto &bindings = mState.getVertexBindings(); in streamAttributes() local
437 const auto &binding = bindings[attrib.bindingIndex]; in streamAttributes()
540 mNativeState->bindings[idx].stride = static_cast<GLsizei>(destStride); in streamAttributes()
541 mNativeState->bindings[idx].offset = static_cast<GLintptr>(vertexStartOffset); in streamAttributes()
543 mNativeState->bindings[idx].buffer = mStreamingArrayBuffer; in streamAttributes()
580 const auto &bindings = mState.getVertexBindings(); in recoverForcedStreamingAttributesForDrawArraysInstanced() local
586 const auto &binding = bindings[attrib.bindingIndex]; in recoverForcedStreamingAttributesForDrawArraysInstanced()
600 mNativeState->bindings[id in recoverForcedStreamingAttributesForDrawArraysInstanced()
[all...]
/third_party/mesa3d/src/gallium/drivers/zink/
H A Dzink_descriptors.c220 for (unsigned j = 0; j < zds->pool->key->layout->bindings[i].descriptorCount; j++) { in descriptor_set_invalidate()
316 pool->num_resources += pool_key->layout->bindings[i].descriptorCount; in descriptor_pool_create()
348 descriptor_layout_create(struct zink_screen *screen, enum zink_descriptor_type t, VkDescriptorSetLayoutBinding *bindings, unsigned num_bindings) in descriptor_layout_create() argument
368 dcslci.pBindings = bindings; in descriptor_layout_create()
394 hash = XXH32(&k->bindings[i], offsetof(VkDescriptorSetLayoutBinding, stageFlags), hash); in hash_descriptor_layout()
405 !memcmp(a_k->bindings, b_k->bindings, a_k->num_bindings * sizeof(VkDescriptorSetLayoutBinding)); in equals_descriptor_layout()
410 VkDescriptorSetLayoutBinding *bindings, unsigned num_bindings, in create_layout()
414 VkDescriptorSetLayout dsl = descriptor_layout_create(screen, type, bindings, num_bindings); in create_layout()
422 k->bindings in create_layout()
409 create_layout(struct zink_context *ctx, enum zink_descriptor_type type, VkDescriptorSetLayoutBinding *bindings, unsigned num_bindings, struct zink_descriptor_layout_key **layout_key) create_layout() argument
438 zink_descriptor_util_layout_get(struct zink_context *ctx, enum zink_descriptor_type type, VkDescriptorSetLayoutBinding *bindings, unsigned num_bindings, struct zink_descriptor_layout_key **layout_key) zink_descriptor_util_layout_get() argument
539 VkDescriptorSetLayoutBinding bindings[PIPE_SHADER_TYPES]; create_gfx_layout() local
1937 VkDescriptorSetLayoutBinding bindings[4]; zink_descriptors_init_bindless() local
[all...]
/third_party/skia/src/gpu/dawn/
H A DGrDawnProgramDataManager.cpp45 std::vector<wgpu::BindGroupEntry> bindings; in uploadUniformBuffers() local
49 bindings.push_back(make_bind_group_entry(GrSPIRVUniformHandler::kUniformBinding, in uploadUniformBuffers()
54 descriptor.entryCount = bindings.size(); in uploadUniformBuffers()
55 descriptor.entries = bindings.data(); in uploadUniformBuffers()
/third_party/musl/porting/linux/user/src/locale/
H A Ddcngettext.c49 static void *volatile bindings; variable
54 for (p=bindings; p; p=p->next) { in gettextdir()
86 for (p=bindings; p; p=p->next) { in bindtextdomain()
99 p->next = bindings; in bindtextdomain()
105 a_cas_p(&bindings, bindings, p); in bindtextdomain()
110 for (q=bindings; q; q=q->next) { in bindtextdomain()
184 for (q=bindings; q; q=q->next) { in dcngettext()
/third_party/musl/src/locale/
H A Ddcngettext.c29 static void *volatile bindings; variable
34 for (p=bindings; p; p=p->next) { in gettextdir()
62 for (p=bindings; p; p=p->next) { in bindtextdomain()
75 p->next = bindings; in bindtextdomain()
81 a_cas_p(&bindings, bindings, p); in bindtextdomain()
86 for (q=bindings; q; q=q->next) { in bindtextdomain()
164 for (q=bindings; q; q=q->next) in dcngettext()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/binding_model/
H A DvktBindingValveMutableTests.cpp221 // * MUTABLE means to transform bindings into mutable bindings.
222 // * NONMUTABLE means to transform bindings into non-mutable bindings.
1218 // Represents an array of bindings. Individual bindings are stored as SingleBindings because each one of them may take a different
1224 std::vector<SingleBinding> bindings; member in vkt::BindingModel::ArrayBinding
1229 , bindings (std::move(bindings_)) in ArrayBinding()
1231 // We need to check all single bindings have the same effective type, even if mutable descriptors have different orders. in ArrayBinding()
1232 DE_ASSERT(!bindings in ArrayBinding()
[all...]
/third_party/mesa3d/src/panfrost/vulkan/
H A Dpanvk_vX_descriptor_set.c91 VkDescriptorSetLayoutBinding *bindings = NULL; in CreateDescriptorSetLayout() local
99 &bindings); in CreateDescriptorSetLayout()
103 num_bindings = bindings[pCreateInfo->bindingCount - 1].binding + 1; in CreateDescriptorSetLayout()
108 if (bindings[i].pImmutableSamplers) in CreateDescriptorSetLayout()
109 num_immutable_samplers += bindings[i].descriptorCount; in CreateDescriptorSetLayout()
134 const VkDescriptorSetLayoutBinding *binding = &bindings[i]; in CreateDescriptorSetLayout()
136 &set_layout->bindings[binding->binding]; in CreateDescriptorSetLayout()
220 free(bindings); in CreateDescriptorSetLayout()
225 free(bindings); in CreateDescriptorSetLayout()
322 if (!layout->bindings[ in descriptor_set_create()
[all...]
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/
H A DBindGroupLayoutVk.cpp92 // Compute the bindings that will be chained in the DescriptorSetLayout create info. We add in Initialize()
94 // bindings of the same type. in Initialize()
95 ityp::vector<BindingIndex, VkDescriptorSetLayoutBinding> bindings; in Initialize() local
96 bindings.reserve(GetBindingCount()); in Initialize()
111 bindings.emplace_back(vkBinding); in Initialize()
118 createInfo.bindingCount = static_cast<uint32_t>(bindings.size()); in Initialize()
119 createInfo.pBindings = bindings.data(); in Initialize()
/third_party/mesa3d/src/imagination/vulkan/
H A Dpvr_descriptor_set.c205 struct pvr_descriptor_set_layout_binding *bindings; in pvr_descriptor_set_layout_allocate() local
212 vk_multialloc_add(&ma, &bindings, __typeof__(*bindings), binding_count); in pvr_descriptor_set_layout_allocate()
233 layout->bindings = bindings; in pvr_descriptor_set_layout_allocate()
273 const VkDescriptorSetLayoutBinding *bindings, in pvr_create_sorted_bindings()
285 memcpy(sorted_bindings, bindings, binding_count * sizeof(*sorted_bindings)); in pvr_create_sorted_bindings()
354 &layout->bindings[i]; in pvr_dump_in_memory_layout_sizes()
370 &layout->bindings[i]; in pvr_dump_in_memory_layout_sizes()
393 &layout->bindings[ in pvr_dump_in_memory_layout_sizes()
271 pvr_create_sorted_bindings(struct pvr_device *device, const VkAllocationCallbacks *allocator, const VkDescriptorSetLayoutBinding *bindings, uint32_t binding_count) pvr_create_sorted_bindings() argument
437 VkDescriptorSetLayoutBinding *bindings; pvr_CreateDescriptorSetLayout() local
[all...]
/third_party/skia/third_party/externals/dawn/src/dawn_native/opengl/
H A DShaderModuleGL.cpp76 // Fill in bindingInfo with the SPIRV bindings in ExtractSpirvInfo()
81 BindingInfoArray* bindings, bool isStorageBuffer = false) -> MaybeError { in ExtractSpirvInfo()
100 (*bindings)[bindGroupIndex].emplace(bindingNumber, ShaderBindingInfo{}); in ExtractSpirvInfo()
101 DAWN_INVALID_IF(!it.second, "Shader has duplicate bindings"); in ExtractSpirvInfo()
139 // Differentiate between readonly storage bindings and writable ones in ExtractSpirvInfo()
198 BindingInfoArray* bindings = resultBindings.get(); in ExtractSpirvInfo() local
200 BindingInfoType::Buffer, bindings)); in ExtractSpirvInfo()
202 BindingInfoType::Texture, bindings)); in ExtractSpirvInfo()
204 BindingInfoType::Sampler, bindings)); in ExtractSpirvInfo()
206 BindingInfoType::Buffer, bindings, tru in ExtractSpirvInfo()
239 std::unique_ptr<BindingInfoArray> bindings; ReflectShaderUsingSPIRVCross() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
H A DvkBuilderUtil.cpp104 // Create new layout bindings with pImmutableSamplers updated in build()
105 std::vector<VkDescriptorSetLayoutBinding> bindings = m_bindings; in build() local
112 while (bindings[bindingNdx].binding != samplerInfo.bindingIndex) in build()
116 if (bindingNdx >= (deUint32)bindings.size()) in build()
120 bindings[bindingNdx].pImmutableSamplers = &m_immutableSamplers[samplerInfo.samplerBaseIndex]; in build()
128 (deUint32)bindings.size(), // bindingCount in build()
129 (bindings.empty()) ? (DE_NULL) : (&bindings.front()), // pBinding in build()
/third_party/mesa3d/src/gallium/frontends/clover/core/
H A Dformat.cpp132 unsigned bindings = 0; in supported_formats() local
135 bindings |= PIPE_BIND_SAMPLER_VIEW; in supported_formats()
137 bindings |= PIPE_BIND_SHADER_IMAGE; in supported_formats()
142 dev.pipe, f.second, target, 1, 1, bindings); in supported_formats()
/third_party/mesa3d/src/gallium/drivers/svga/
H A Dsvga_resource_texture.c831 unsigned bindings = template->bind; in svga_texture_create() local
959 if ((bindings & (PIPE_BIND_RENDER_TARGET | PIPE_BIND_DEPTH_STENCIL)) && in svga_texture_create()
960 !(bindings & PIPE_BIND_SAMPLER_VIEW)) { in svga_texture_create()
967 bindings |= PIPE_BIND_SAMPLER_VIEW; in svga_texture_create()
971 if (bindings & PIPE_BIND_SAMPLER_VIEW) { in svga_texture_create()
975 if (!(bindings & PIPE_BIND_RENDER_TARGET)) { in svga_texture_create()
982 bindings |= PIPE_BIND_RENDER_TARGET; in svga_texture_create()
986 if (!(bindings & PIPE_BIND_DEPTH_STENCIL)) { in svga_texture_create()
993 bindings |= PIPE_BIND_DEPTH_STENCIL; in svga_texture_create()
998 if (bindings in svga_texture_create()
[all...]
H A Dsvga_format.c2200 * \param bindings bitmask of PIPE_BIND_x flags
2208 unsigned bindings) in svga_is_format_supported()
2215 assert(bindings); in svga_is_format_supported()
2222 svga_format = svga_translate_format(ss, format, bindings); in svga_is_format_supported()
2228 (bindings & (PIPE_BIND_DISPLAY_TARGET | PIPE_BIND_RENDER_TARGET))) { in svga_is_format_supported()
2237 if (bindings & PIPE_BIND_DISPLAY_TARGET) { in svga_is_format_supported()
2270 if (bindings & PIPE_BIND_RENDER_TARGET) { in svga_is_format_supported()
2281 if (bindings & PIPE_BIND_RENDER_TARGET) in svga_is_format_supported()
2284 if (bindings & PIPE_BIND_DEPTH_STENCIL) in svga_is_format_supported()
2287 if (bindings in svga_is_format_supported()
2203 svga_is_format_supported(struct pipe_screen *screen, enum pipe_format format, enum pipe_texture_target target, unsigned sample_count, unsigned storage_sample_count, unsigned bindings) svga_is_format_supported() argument
2304 svga_is_dx_format_supported(struct pipe_screen *screen, enum pipe_format format, enum pipe_texture_target target, unsigned sample_count, unsigned storage_sample_count, unsigned bindings) svga_is_dx_format_supported() argument
[all...]

Completed in 26 milliseconds

12345678910