/third_party/vk-gl-cts/modules/glshared/ |
H A D | glsBuiltinPrecisionTests.cpp | 5505 formats[glu::PRECISION_HIGHP] = &highp_; in PrecisionTestContext() 5506 formats[glu::PRECISION_MEDIUMP] = &mediump_; in PrecisionTestContext() 5507 formats[glu::PRECISION_LOWP] = &lowp_; in PrecisionTestContext() 5512 const FloatFormat* formats[glu::PRECISION_LAST]; member 5528 const FloatFormat& fmt = *de::getSizedArrayElement<glu::PRECISION_LAST>(ctx.formats, precNdx); in createFuncGroup() 5529 const FloatFormat& highpFmt = *de::getSizedArrayElement<glu::PRECISION_LAST>(ctx.formats, in createFuncGroup()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/ |
H A D | vktPipelineAttachmentFeedbackLoopLayoutTests.cpp | 2458 const VkFormat formats[] = in createAttachmentFeedbackLoopLayoutSamplerTests() local 2530 for (size_t formatNdx = 0; formatNdx < DE_LENGTH_OF_ARRAY(formats); formatNdx++) in createAttachmentFeedbackLoopLayoutSamplerTests() 2532 const VkFormat format = formats[formatNdx]; in createAttachmentFeedbackLoopLayoutSamplerTests() 2539 // Do not use compressed formats with 1D and 1D array textures. in createAttachmentFeedbackLoopLayoutSamplerTests()
|
/third_party/vk-gl-cts/external/openglcts/modules/gles2/ |
H A D | es2cTexture3DTests.cpp | 110 int calculateDataSize(deUint32 formats, int width, int height, int depth) const; 184 int Texture3DBase::calculateDataSize(deUint32 formats, int width, int height, int depth) const in calculateDataSize() argument 186 tcu::CompressedTexFormat format = glu::mapGLCompressedTexFormat(formats); in calculateDataSize() 1656 m_testCtx.setTestResult(QP_TEST_RESULT_NOT_SUPPORTED, "No supported compressed texture formats."); in iterate() 1673 "GL_INVALID_ENUM is generated if internalformat is not one of the specific compressed internal formats."; in iterate() 1788 m_testCtx.setTestResult(QP_TEST_RESULT_NOT_SUPPORTED, "No supported compressed texture formats."); in iterate() 1996 deqp::TestCaseGroup* formatsGroup = new deqp::TestCaseGroup(m_context, "formats", "3D Texture Formats"); in init()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/ |
H A D | vktPipelineAttachmentFeedbackLoopLayoutTests.cpp | 2298 const VkFormat formats[] = in createAttachmentFeedbackLoopLayoutSamplerTests() local 2358 de::MovePtr<tcu::TestCaseGroup> formatTests (new tcu::TestCaseGroup(testCtx, "format", "Tests samplable formats")); in createAttachmentFeedbackLoopLayoutSamplerTests() 2360 for (size_t formatNdx = 0; formatNdx < DE_LENGTH_OF_ARRAY(formats); formatNdx++) in createAttachmentFeedbackLoopLayoutSamplerTests() 2362 const VkFormat format = formats[formatNdx]; in createAttachmentFeedbackLoopLayoutSamplerTests() 2369 // Do not use compressed formats with 1D and 1D array textures. in createAttachmentFeedbackLoopLayoutSamplerTests()
|
/third_party/mesa3d/src/egl/drivers/dri2/ |
H A D | egl_dri2.c | 2784 EGLint *formats, EGLint *count) in dri2_query_dma_buf_formats() 2787 if (max < 0 || (max > 0 && formats == NULL)) in dri2_query_dma_buf_formats() 2788 return _eglError(EGL_BAD_PARAMETER, "invalid value for max count of formats"); in dri2_query_dma_buf_formats() 2795 formats, count)) in dri2_query_dma_buf_formats() 2799 /* Assert that all of the formats returned are actually fourcc formats. in dri2_query_dma_buf_formats() 2801 * return the fake fourcc formats defined in dri_interface.h, we'll have in dri2_query_dma_buf_formats() 2803 * fourcc formats so that we don't leak the fake internal ones. in dri2_query_dma_buf_formats() 2806 assert(dri2_num_fourcc_format_planes(formats[i]) > 0); in dri2_query_dma_buf_formats() 2824 return _eglError(EGL_BAD_PARAMETER, "invalid value for max count of formats"); in dri2_query_dma_buf_modifiers() 2783 dri2_query_dma_buf_formats(_EGLDisplay *disp, EGLint max, EGLint *formats, EGLint *count) dri2_query_dma_buf_formats() argument [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderrender/ |
H A D | vktShaderRenderTextureGatherTests.cpp | 2579 } formats[] = in init() local 2646 for (int formatNdx = 0; formatNdx < DE_LENGTH_OF_ARRAY(formats); formatNdx++) in init() 2648 const tcu::TextureFormat& format = formats[formatNdx].format; in init() 2649 TestCaseGroup* const formatGroup = new TestCaseGroup(m_testCtx, formats[formatNdx].name); in init()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderrender/ |
H A D | vktShaderRenderTextureGatherTests.cpp | 2598 } formats[] = in init() local 2665 for (int formatNdx = 0; formatNdx < DE_LENGTH_OF_ARRAY(formats); formatNdx++) in init() 2667 const tcu::TextureFormat& format = formats[formatNdx].format; in init() 2668 TestCaseGroup* const formatGroup = new TestCaseGroup(m_testCtx, formats[formatNdx].name, ""); in init()
|
/third_party/vulkan-loader/loader/ |
H A D | wsi.c | 2802 // If the icd doesn't support VK_KHR_surface, then there are no formats in terminator_GetPhysicalDeviceSurfaceFormats2KHR() 2816 VkSurfaceFormatKHR *formats = loader_stack_alloc(*pSurfaceFormatCount * sizeof(VkSurfaceFormatKHR)); in terminator_GetPhysicalDeviceSurfaceFormats2KHR() local 2817 if (formats == NULL) { in terminator_GetPhysicalDeviceSurfaceFormats2KHR() 2822 pSurfaceFormatCount, formats); in terminator_GetPhysicalDeviceSurfaceFormats2KHR() 2824 pSurfaceFormats[i].surfaceFormat = formats[i]; in terminator_GetPhysicalDeviceSurfaceFormats2KHR()
|
/third_party/mesa3d/include/GL/internal/ |
H A D | dri_interface.h | 1178 * These formats correspond to the similarly named MESA_FORMAT_* 1184 * by the driver (YUV planar formats) but serve as a base image for 1235 * Extra fourcc formats used internally to Mesa with createImageFromNames. 1562 * \param max Maximum number of formats that can be accomodated into 1563 * \param formats. If zero, no formats are returned - 1565 * supported dmabuf formats in \param count. 1566 * \param formats Buffer to fill formats into. 1567 * \param count Count of formats returne [all...] |
/third_party/vk-gl-cts/external/vulkan-docs/src/ |
H A D | Makefile | 273 FORMATSPATH = $(GENERATED)/formats
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/ |
H A D | vktRenderPassSubpassDependencyTests.cpp | 2355 // When testing color formats the same attachment is used as input and output. This requires general layout to be used. in iterateInternal() 4072 // Implementations must support at least one of the following formats in initTests() 4074 const VkFormat formats[] = in initTests() local 4092 for (size_t formatNdx = 0; formatNdx < DE_LENGTH_OF_ARRAY(formats); formatNdx++) in initTests() 4103 const VkFormat format (formats[formatNdx]); in initTests() 4157 const SubpassTestConfig testConfig (formats[formatNdx], renderSizes[renderSizeNdx], renderPass, renderingType); in initTests() 4158 const string format (formatToName(formats[formatNdx]).c_str()); in initTests()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/renderpass/ |
H A D | vktRenderPassSubpassDependencyTests.cpp | 2355 // When testing color formats the same attachment is used as input and output. This requires general layout to be used. in iterateInternal() 4072 // Implementations must support at least one of the following formats in initTests() 4074 const VkFormat formats[] = in initTests() local 4092 for (size_t formatNdx = 0; formatNdx < DE_LENGTH_OF_ARRAY(formats); formatNdx++) in initTests() 4103 const VkFormat format (formats[formatNdx]); in initTests() 4157 const SubpassTestConfig testConfig (formats[formatNdx], renderSizes[renderSizeNdx], renderPass, renderingType); in initTests() 4158 const string format (formatToName(formats[formatNdx]).c_str()); in initTests()
|
/third_party/ffmpeg/libavfilter/ |
H A D | Makefile | 19 formats.o \ 618 TESTPROGS = drawutils filtfmts formats integral
|
H A D | vf_zscale.c | 34 #include "formats.h" 222 ret = ff_formats_ref(ff_make_format_list(pixel_fmts), &ctx->inputs[0]->outcfg.formats); in query_formats() 225 return ff_formats_ref(ff_make_format_list(pixel_fmts), &ctx->outputs[0]->incfg.formats); in query_formats() 515 /* returns 0 if image formats are the same and 1 otherwise */
|
/third_party/ffmpeg/libavutil/ |
H A D | hwcontext_qsv.c | 767 enum AVPixelFormat **formats) in qsv_transfer_get_formats() 778 *formats = fmts; in qsv_transfer_get_formats() 765 qsv_transfer_get_formats(AVHWFramesContext *ctx, enum AVHWFrameTransferDirection dir, enum AVPixelFormat **formats) qsv_transfer_get_formats() argument
|
/third_party/EGL/api/EGL/ |
H A D | eglext.h | 805 typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDMABUFFORMATSEXTPROC) (EGLDisplay dpy, EGLint max_formats, EGLint *formats, EGLint *num_formats); 808 EGLAPI EGLBoolean EGLAPIENTRY eglQueryDmaBufFormatsEXT (EGLDisplay dpy, EGLint max_formats, EGLint *formats, EGLint *num_formats);
|
/third_party/mesa3d/include/EGL/ |
H A D | eglext.h | 804 typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDMABUFFORMATSEXTPROC) (EGLDisplay dpy, EGLint max_formats, EGLint *formats, EGLint *num_formats); 807 EGLAPI EGLBoolean EGLAPIENTRY eglQueryDmaBufFormatsEXT (EGLDisplay dpy, EGLint max_formats, EGLint *formats, EGLint *num_formats);
|
/third_party/libdrm/tests/modetest/ |
H A D | modetest.c | 529 printf(" formats:"); in dump_planes() 531 dump_fourcc(ovr->formats[j]); in dump_planes() 1086 if (ovr->formats[i] == fmt) in format_support()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/rasterization/ |
H A D | vktShaderTileImageTests.cpp | 1988 const std::vector<VkFormat> formats = { VK_FORMAT_R5G6B5_UNORM_PACK16, in createShaderTileImageTestVariations() local 2093 for (VkFormat format : formats) in createShaderTileImageTestVariations() 2154 } // formats in createShaderTileImageTestVariations()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/memory/ |
H A D | vktMemoryMappingTests.cpp | 311 const VkFormat formats[] = 321 for (const VkFormat f : formats)
|
/third_party/skia/third_party/externals/swiftshader/include/EGL/ |
H A D | eglext.h | 768 typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDMABUFFORMATSEXTPROC) (EGLDisplay dpy, EGLint max_formats, EGLint *formats, EGLint *num_formats); 771 EGLAPI EGLBoolean EGLAPIENTRY eglQueryDmaBufFormatsEXT (EGLDisplay dpy, EGLint max_formats, EGLint *formats, EGLint *num_formats);
|
/third_party/skia/third_party/externals/egl-registry/api/EGL/ |
H A D | eglext.h | 768 typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDMABUFFORMATSEXTPROC) (EGLDisplay dpy, EGLint max_formats, EGLint *formats, EGLint *num_formats); 771 EGLAPI EGLBoolean EGLAPIENTRY eglQueryDmaBufFormatsEXT (EGLDisplay dpy, EGLint max_formats, EGLint *formats, EGLint *num_formats);
|
/third_party/skia/third_party/externals/angle2/include/EGL/ |
H A D | eglext.h | 770 typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDMABUFFORMATSEXTPROC) (EGLDisplay dpy, EGLint max_formats, EGLint *formats, EGLint *num_formats); 773 EGLAPI EGLBoolean EGLAPIENTRY eglQueryDmaBufFormatsEXT (EGLDisplay dpy, EGLint max_formats, EGLint *formats, EGLint *num_formats);
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/sparse_resources/ |
H A D | vktSparseResourcesImageSparseResidency.cpp | 1037 for (size_t formatNdx = 0; formatNdx < imageParameters[imageTypeNdx].formats.size(); ++formatNdx) in createImageSparseResidencyTestsCommon() 1039 const VkFormat format = imageParameters[imageTypeNdx].formats[formatNdx].format; in createImageSparseResidencyTestsCommon() 1047 // skip test for images with odd sizes for some YCbCr formats in createImageSparseResidencyTestsCommon()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/transform_feedback/ |
H A D | vktPrimitivesGeneratedQueryTests.cpp | 590 constexpr VkFormat formats[] = in selectDepthStencilFormat() local 599 for (VkFormat format : formats) in selectDepthStencilFormat()
|