Home
last modified time | relevance | path

Searched refs:pixelFormats (Results 1 – 25 of 57) sorted by relevance

123

/dports/multimedia/qt5-multimedia/kde-qtmultimedia-5.15.2p3/src/qtmultimediaquicktools/
H A Dqsgvideonode_texture.cpp54 QList<QVideoFrame::PixelFormat> pixelFormats; in supportedPixelFormats() local
57 pixelFormats.append(QVideoFrame::Format_RGB565); in supportedPixelFormats()
58 pixelFormats.append(QVideoFrame::Format_RGB32); in supportedPixelFormats()
59 pixelFormats.append(QVideoFrame::Format_ARGB32); in supportedPixelFormats()
60 pixelFormats.append(QVideoFrame::Format_BGR32); in supportedPixelFormats()
61 pixelFormats.append(QVideoFrame::Format_BGRA32); in supportedPixelFormats()
63 pixelFormats.append(QVideoFrame::Format_ABGR32); in supportedPixelFormats()
67 return pixelFormats; in supportedPixelFormats()
H A Dqsgvideonode_rgb.cpp52 QList<QVideoFrame::PixelFormat> pixelFormats; in supportedPixelFormats() local
55 pixelFormats.append(QVideoFrame::Format_RGB32); in supportedPixelFormats()
56 pixelFormats.append(QVideoFrame::Format_ARGB32); in supportedPixelFormats()
57 pixelFormats.append(QVideoFrame::Format_BGR32); in supportedPixelFormats()
58 pixelFormats.append(QVideoFrame::Format_BGRA32); in supportedPixelFormats()
59 pixelFormats.append(QVideoFrame::Format_RGB565); in supportedPixelFormats()
62 return pixelFormats; in supportedPixelFormats()
/dports/games/residualvm/residualvm-0.3.1/backends/graphics/openglsdl/
H A Dopenglsdl-graphics.cpp243 Common::Array<OpenGLPixelFormat> pixelFormats; in createOrUpdateGLContext() local
246 pixelFormats.push_back(OpenGLPixelFormat(32, 8, 8, 8, 8, _antialiasing)); in createOrUpdateGLContext()
247 pixelFormats.push_back(OpenGLPixelFormat(16, 5, 5, 5, 1, _antialiasing)); in createOrUpdateGLContext()
250 pixelFormats.push_back(OpenGLPixelFormat(32, 8, 8, 8, 8, 0)); in createOrUpdateGLContext()
251 pixelFormats.push_back(OpenGLPixelFormat(16, 5, 5, 5, 1, 0)); in createOrUpdateGLContext()
252 pixelFormats.push_back(OpenGLPixelFormat(16, 5, 6, 5, 0, 0)); in createOrUpdateGLContext()
259 for (; it != pixelFormats.end(); it++) { in createOrUpdateGLContext()
329 if (it != pixelFormats.begin() && it != pixelFormats.end()) { in createOrUpdateGLContext()
330 bool wantsAA = pixelFormats.front().multisampleSamples > 0; in createOrUpdateGLContext()
334 pixelFormats.front().bytesPerPixel, in createOrUpdateGLContext()
[all …]
/dports/games/scummvm/scummvm-2.5.1/backends/graphics3d/openglsdl/
H A Dopenglsdl-graphics3d.cpp398 Common::Array<OpenGLPixelFormat> pixelFormats; in createOrUpdateGLContext() local
401 pixelFormats.push_back(OpenGLPixelFormat(32, 8, 8, 8, 8, _antialiasing)); in createOrUpdateGLContext()
402 pixelFormats.push_back(OpenGLPixelFormat(16, 5, 5, 5, 1, _antialiasing)); in createOrUpdateGLContext()
405 pixelFormats.push_back(OpenGLPixelFormat(32, 8, 8, 8, 8, 0)); in createOrUpdateGLContext()
406 pixelFormats.push_back(OpenGLPixelFormat(16, 5, 5, 5, 1, 0)); in createOrUpdateGLContext()
407 pixelFormats.push_back(OpenGLPixelFormat(16, 5, 6, 5, 0, 0)); in createOrUpdateGLContext()
414 for (; it != pixelFormats.end(); it++) { in createOrUpdateGLContext()
506 if (it != pixelFormats.begin() && it != pixelFormats.end()) { in createOrUpdateGLContext()
507 bool wantsAA = pixelFormats.front().multisampleSamples > 0; in createOrUpdateGLContext()
511 pixelFormats.front().bytesPerPixel, in createOrUpdateGLContext()
[all …]
/dports/multimedia/qt5-multimedia/kde-qtmultimedia-5.15.2p3/src/plugins/android/videonode/
H A Dqandroidsgvideonodeplugin.cpp48 QList<QVideoFrame::PixelFormat> pixelFormats; in supportedPixelFormats() local
51 pixelFormats.append(QVideoFrame::Format_ABGR32); in supportedPixelFormats()
53 return pixelFormats; in supportedPixelFormats()
/dports/multimedia/qt5-multimedia/kde-qtmultimedia-5.15.2p3/src/plugins/android/src/mediacapture/
H A Dqandroidviewfindersettingscontrol.cpp56 … const QList<QVideoFrame::PixelFormat> pixelFormats = m_cameraSession->getSupportedPixelFormats(); in supportedViewfinderSettings() local
59 viewfinderSettings.reserve(previewSizes.size() * pixelFormats.size() * fpsRanges.size()); in supportedViewfinderSettings()
62 for (QVideoFrame::PixelFormat pixelFormat : pixelFormats) { in supportedViewfinderSettings()
/dports/multimedia/libva-intel-driver/intel-vaapi-driver-2.4.1/test/
H A Di965_surface_test.cpp30 static const std::set<unsigned> pixelFormats = { variable
95 std::set_difference(pixelFormats.begin(), pixelFormats.end(), in TEST_F()
99 EXPECT_EQ(pixelFormats.size() - supported.size(), unsupported.size()); in TEST_F()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/external/openglcts/modules/common/
H A DglcConfigListWGL.cpp46 const std::vector<int> pixelFormats = wgl.getPixelFormats(tmpWindow.getDeviceContext()); in getDefaultWglConfigList() local
50 …for (std::vector<int>::const_iterator fmtIter = pixelFormats.begin(); fmtIter != pixelFormats.end(… in getDefaultWglConfigList()
/dports/graphics/libjpeg-turbo/libjpeg-turbo-2.1.1/fuzz/
H A Ddecompress.cc45 enum TJPF pixelFormats[NUMPF] = in LLVMFuzzerTestOneInput() enum
71 int pf = pixelFormats[pfi], flags = TJFLAG_LIMITSCANS, i, sum = 0; in LLVMFuzzerTestOneInput()
H A Ddecompress_yuv.cc45 enum TJPF pixelFormats[NUMPF] = in LLVMFuzzerTestOneInput() enum
68 int pf = pixelFormats[pfi], flags = TJFLAG_LIMITSCANS, i, sum = 0; in LLVMFuzzerTestOneInput()
/dports/graphics/jpeg-turbo/libjpeg-turbo-2.1.1/fuzz/
H A Ddecompress.cc45 enum TJPF pixelFormats[NUMPF] = in LLVMFuzzerTestOneInput() enum
71 int pf = pixelFormats[pfi], flags = TJFLAG_LIMITSCANS, i, sum = 0; in LLVMFuzzerTestOneInput()
H A Ddecompress_yuv.cc45 enum TJPF pixelFormats[NUMPF] = in LLVMFuzzerTestOneInput() enum
68 int pf = pixelFormats[pfi], flags = TJFLAG_LIMITSCANS, i, sum = 0; in LLVMFuzzerTestOneInput()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/framework/platform/win32/
H A DtcuWGL.cpp314 std::vector<int> pixelFormats(values[0]); in getPixelFormats() local
316 pixelFormats[i] = i+1; in getPixelFormats()
318 return pixelFormats; in getPixelFormats()
616 std::vector<int> pixelFormats = wgl.getPixelFormats(deviceCtx); in choosePixelFormat() local
618 …for (std::vector<int>::const_iterator fmtIter = pixelFormats.begin(); fmtIter != pixelFormats.end(… in choosePixelFormat()
/dports/devel/apitrace/apitrace-9.0/retrace/
H A Dglws_wgl.cpp527 int pixelFormats[20]; in createPbuffer() local
534 20, pixelFormats, in createPbuffer()
569 hPBuffer = pfnWglCreatePbufferARB(hdc, pixelFormats[0], in createPbuffer()
573 << pixelFormats[0] << ")\n"; in createPbuffer()
/dports/multimedia/qt5-multimedia/kde-qtmultimedia-5.15.2p3/src/plugins/avfoundation/camera/
H A Davfcameraviewfindersettingscontrol.mm94 QVector<QVideoFrame::PixelFormat> pixelFormats(viewfinderPixelFormats());
96 if (!pixelFormats.size())
97 pixelFormats << QVideoFrame::Format_Invalid; // The default value.
120 for (int i = 0; i < pixelFormats.size(); ++i) {
125 newSet.setPixelFormat(pixelFormats[i]);
309 NSArray *pixelFormats = [videoOutput availableVideoCVPixelFormatTypes];
311 for (NSObject *obj in pixelFormats) {
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/media/capture/video/android/java/src/org/chromium/media/
H A DVideoCaptureCamera.java236 List<Integer> pixelFormats = null; in getDeviceSupportedFormats() local
238 pixelFormats = parameters.getSupportedPreviewFormats(); in getDeviceSupportedFormats()
242 if (pixelFormats == null) { in getDeviceSupportedFormats()
243 pixelFormats = new ArrayList<Integer>(); in getDeviceSupportedFormats()
245 if (pixelFormats.size() == 0) { in getDeviceSupportedFormats()
246 pixelFormats.add(ImageFormat.UNKNOWN); in getDeviceSupportedFormats()
248 for (Integer previewFormat : pixelFormats) { in getDeviceSupportedFormats()
/dports/www/chromium-legacy/chromium-88.0.4324.182/media/capture/video/android/java/src/org/chromium/media/
H A DVideoCaptureCamera.java258 List<Integer> pixelFormats = null; in getDeviceSupportedFormats() local
260 pixelFormats = parameters.getSupportedPreviewFormats(); in getDeviceSupportedFormats()
264 if (pixelFormats == null) { in getDeviceSupportedFormats()
265 pixelFormats = new ArrayList<Integer>(); in getDeviceSupportedFormats()
267 if (pixelFormats.size() == 0) { in getDeviceSupportedFormats()
268 pixelFormats.add(ImageFormat.UNKNOWN); in getDeviceSupportedFormats()
270 for (Integer previewFormat : pixelFormats) { in getDeviceSupportedFormats()
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/testbed/
H A Dgraphics.h55 TestExitStatus pixelFormats();
/dports/games/scummvm/scummvm-2.5.1/engines/testbed/
H A Dgraphics.h40 TestExitStatus pixelFormats(Common::List<Graphics::PixelFormat> &pfList);
/dports/multimedia/qt5-multimedia/kde-qtmultimedia-5.15.2p3/src/multimedia/camera/
H A Dqcamera.cpp756 QList<QVideoFrame::PixelFormat> pixelFormats; in supportedViewfinderPixelFormats() local
759 if (!pixelFormats.contains(s.pixelFormat())) in supportedViewfinderPixelFormats()
760 pixelFormats.append(s.pixelFormat()); in supportedViewfinderPixelFormats()
763 return pixelFormats; in supportedViewfinderPixelFormats()
/dports/multimedia/zart/gmic-2.8.1/zart/src/
H A DWebcamSource.cpp490 QList<unsigned int> pixelFormats; in retrieveWebcamResolutionsV4L2() local
494 pixelFormats += fmt.pixelformat; in retrieveWebcamResolutionsV4L2()
497 for (unsigned int pixelformat : pixelFormats) { in retrieveWebcamResolutionsV4L2()
/dports/multimedia/zart/zart-099554f/src/
H A DWebcamSource.cpp490 QList<unsigned int> pixelFormats; in retrieveWebcamResolutionsV4L2() local
494 pixelFormats += fmt.pixelformat; in retrieveWebcamResolutionsV4L2()
497 for (unsigned int pixelformat : pixelFormats) { in retrieveWebcamResolutionsV4L2()
/dports/graphics/opencv/opencv-4.5.3/modules/videoio/src/
H A Dcap_aravis.cpp154 gint64 *pixelFormats; member in CvCaptureCAM_Aravis
263 pixelFormats = arv_camera_get_available_pixel_formats(camera, &pixelFormatsCnt); in open()
/dports/multimedia/ffmpegthumbnailer/ffmpegthumbnailer-2.2.2/libffmpegthumbnailer/
H A Dmoviedecoder.cpp389 static const AVPixelFormat pixelFormats[] = { AV_PIX_FMT_RGB24, AV_PIX_FMT_NONE }; in initializeFilterGraph() local
407 buffersinkParams->pixel_fmts = pixelFormats; in initializeFilterGraph()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/webrtc/sdk/objc/components/video_codec/
H A DRTCVideoEncoderH264.mm568 id pixelFormats =
571 if ([pixelFormats isKindOfClass:[NSArray class]]) {
572 compressionSessionPixelFormats = (NSArray *)pixelFormats;
573 } else if ([pixelFormats isKindOfClass:[NSNumber class]]) {
574 compressionSessionPixelFormats = @[ (NSNumber *)pixelFormats ];

123