/third_party/skia/third_party/externals/angle2/util/ |
H A D | geometry_utils.cpp | 25 void CreateSphereGeometry(size_t sliceCount, float radius, SphereGeometry *result) in CreateSphereGeometry() argument 27 size_t parellelCount = sliceCount / 2; in CreateSphereGeometry() 28 size_t vertexCount = (parellelCount + 1) * (sliceCount + 1); in CreateSphereGeometry() 29 size_t indexCount = parellelCount * sliceCount * 6; in CreateSphereGeometry() 30 float angleStep = static_cast<float>(2.0f * M_PI) / sliceCount; in CreateSphereGeometry() 36 for (size_t j = 0; j < sliceCount + 1; j++) in CreateSphereGeometry() 41 size_t vertexIdx = i * (sliceCount + 1) + j; in CreateSphereGeometry() 51 for (size_t j = 0; j < sliceCount; j++) in CreateSphereGeometry() 53 result->indices.push_back(static_cast<unsigned short>(i * (sliceCount + 1) + j)); in CreateSphereGeometry() 54 result->indices.push_back(static_cast<unsigned short>((i + 1) * (sliceCount in CreateSphereGeometry() [all...] |
H A D | geometry_utils.h | 31 ANGLE_UTIL_EXPORT void CreateSphereGeometry(size_t sliceCount,
|
/third_party/skia/third_party/externals/dawn/src/tests/end2end/ |
H A D | StorageTextureTests.cpp | 303 std::string sliceCount; in CommonReadOnlyTestCode() local 307 sliceCount = "1"; in CommonReadOnlyTestCode() 311 sliceCount = "textureNumLayers(storageImage0)"; in CommonReadOnlyTestCode() 315 sliceCount = "textureDimensions(storageImage0).z"; in CommonReadOnlyTestCode() 328 ostream << " let sliceCount : i32 = " << sliceCount << ";\n"; in CommonReadOnlyTestCode() local 329 ostream << " for (var slice : i32 = 0; slice < sliceCount; slice = slice + 1) {\n"; in CommonReadOnlyTestCode() 354 std::string sliceCount; in CommonWriteOnlyTestCode() local 358 sliceCount = "1"; in CommonWriteOnlyTestCode() 362 sliceCount in CommonWriteOnlyTestCode() 385 ostream << " let sliceCount : i32 = " << sliceCount << ";\\n"; CommonWriteOnlyTestCode() local 407 std::string sliceCount; CommonReadWriteTestCode() local 438 ostream << " let sliceCount : i32 = " << sliceCount << ";\\n"; CommonReadWriteTestCode() local 500 const uint32_t sliceCount = CreateTextureWithTestData() local 708 const uint32_t sliceCount = CheckOutputStorageTexture() local [all...] |
/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/ |
H A D | TextureD3D12.cpp | 919 uint32_t sliceCount) const { in GetRTVDescriptor() 925 ASSERT(sliceCount == 1); in GetRTVDescriptor() 941 rtvDesc.Texture2DArray.ArraySize = sliceCount; in GetRTVDescriptor() 949 rtvDesc.Texture3D.WSize = sliceCount; in GetRTVDescriptor() 1072 uint32_t sliceCount = 1; in ClearTexture() local 1075 sliceCount = std::max(GetDepth() >> level, 1u); in ClearTexture() 1078 GetRTVDescriptor(level, baseSlice, sliceCount); in ClearTexture()
|
H A D | TextureD3D12.h | 62 uint32_t sliceCount) const;
|
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/ |
H A D | VkImage.cpp | 445 uint32_t sliceCount = both3D ? copyExtent.depth : samples; in copySingleAspectTo() local 447 bool isSingleSlice = (sliceCount == 1); in copySingleAspectTo() 492 size_t copySize = sliceCount * srcDepthPitch; in copySingleAspectTo() 503 for(uint32_t z = 0; z < sliceCount; z++) in copySingleAspectTo() 520 for(uint32_t z = 0; z < sliceCount; z++) in copySingleAspectTo()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/ |
H A D | mtl_command_buffer.h | 578 uint32_t sliceCount,
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/ |
H A D | vktPipelineImageSlicedViewOf3DTests.cpp | 497 sliceCreateInfo.sliceCount = slices->y(); in make3DImageView()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/video/ |
H A D | vktVideoBaseDecodeUtils.cpp | 1082 h264PictureInfo->sliceCount = pd->numSlices;
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/video/ |
H A D | vktVideoBaseDecodeUtils.cpp | 1261 pPictureInfo->sliceCount = pNvidiaVulkanParserPictureData->nNumSlices;
|
/third_party/vulkan-headers/include/vulkan/ |
H A D | vulkan_structs.hpp | 46405 , sliceCount( sliceCount_ ) sliceCount() function 46489 uint32_t sliceCount = {}; global() member [all...] |
H A D | vulkan_core.h | 8771 uint32_t sliceCount; member 17344 uint32_t sliceCount; member
|
H A D | vulkan_hash.hpp | 6085 VULKAN_HPP_HASH_COMBINE( seed, imageViewSlicedCreateInfoEXT.sliceCount ); 15339 VULKAN_HPP_HASH_COMBINE( seed, videoDecodeH264PictureInfoKHR.sliceCount );
|