| /third_party/mesa3d/src/gallium/drivers/softpipe/ci/ |
| D | gitlab-ci-inc.yml | 1 .softpipe-rules: 2 stage: software-renderer 4 - !reference [.test, rules] 5 - if: $EXTERNAL_KERNEL_TAG != null 7 - !reference [.gl-rules, rules] 8 - changes: &softpipe_file_list 9 - src/gallium/drivers/softpipe/**/* 10 - src/gallium/winsys/sw/**/* 13 .softpipe-test: 15 GPU_VERSION: softpipe [all …]
|
| D | gitlab-ci.yml | 2 - local: 'src/gallium/drivers/softpipe/ci/gitlab-ci-inc.yml' 4 softpipe: 6 DEQP_SUITE: softpipe 7 XVFB_SCRIPT: "install/deqp-runner.sh" 9 extends: .softpipe-deqp-test 11 . "$SCRIPTS_DIR"/setup-test-env.sh 14 …xvfb-run -e results/xvfb.log --server-args='-noreset' bash -c ". $SCRIPTS_DIR/setup-test-env.sh &&… 16 softpipe-asan-gles31: 18 DEQP_SUITE: softpipe-asan 19 GPU_VERSION: softpipe-asan [all …]
|
| D | deqp-softpipe.toml | 2 deqp = "/deqp-gles/modules/gles2/deqp-gles2" 3 caselists = ["/deqp-gles/mustpass/gles2-main.txt"] 5 "--deqp-surface-width=256", 6 "--deqp-surface-height=256", 7 "--deqp-surface-type=pbuffer", 8 "--deqp-gl-config-name=rgba8888d24s8ms0", 9 "--deqp-visibility=hidden" 12 renderer_check = "softpipe" 15 deqp = "/deqp-gles/modules/gles3/deqp-gles3" 16 caselists = ["/deqp-gles/mustpass/gles3-main.txt"] [all …]
|
| /third_party/mesa3d/src/gallium/drivers/softpipe/ |
| D | sp_quad_depth_test.c | 21 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. 65 const struct softpipe_cached_tile *tile = data->tile; in get_depth_stencil_values() 67 switch (data->format) { in get_depth_stencil_values() 70 int x = quad->input.x0 % TILE_SIZE + (j & 1); in get_depth_stencil_values() 71 int y = quad->input.y0 % TILE_SIZE + (j >> 1); in get_depth_stencil_values() 72 data->bzzzz[j] = tile->data.depth16[y][x]; in get_depth_stencil_values() 77 int x = quad->input.x0 % TILE_SIZE + (j & 1); in get_depth_stencil_values() 78 int y = quad->input.y0 % TILE_SIZE + (j >> 1); in get_depth_stencil_values() 79 data->bzzzz[j] = tile->data.depth32[y][x]; in get_depth_stencil_values() 85 int x = quad->input.x0 % TILE_SIZE + (j & 1); in get_depth_stencil_values() [all …]
|
| D | sp_setup.c | 20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. 55 float dx; /**< X(v1) - X(v0), used only during setup */ 56 float dy; /**< Y(v1) - Y(v0), used only during setup */ 65 * This can't be arbitrarily increased since we depend on some 32-bit 76 struct softpipe_context *softpipe; member 126 * Clip setup->quad against the scissor/surface bounds. 132 const struct pipe_scissor_state *cliprect = &setup->softpipe->cliprect[viewport_index]; in quad_clip() 133 const int minx = (int) cliprect->minx; in quad_clip() 134 const int maxx = (int) cliprect->maxx; in quad_clip() 135 const int miny = (int) cliprect->miny; in quad_clip() [all …]
|
| D | sp_quad_blend.c | 20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. 99 R[0] = A[0] - B[0]; \ 100 R[1] = A[1] - B[1]; \ 101 R[2] = A[2] - B[2]; \ 102 R[3] = A[3] - B[3]; \ 117 R[0] = A[0] - B[0]; if (R[0] < 0.0f) R[0] = 0.0f; \ 118 R[1] = A[1] - B[1]; if (R[1] < 0.0f) R[1] = 0.0f; \ 119 R[2] = A[2] - B[2]; if (R[2] < 0.0f) R[2] = 0.0f; \ 120 R[3] = A[3] - B[3]; if (R[3] < 0.0f) R[3] = 0.0f; \ 154 struct softpipe_context *softpipe = qs->softpipe; in logicop_quad() local [all …]
|
| /third_party/mesa3d/src/gallium/drivers/radeonsi/ci/ |
| D | radeonsi-run-tests.py | 5 # SPDX-License-Identifier: MIT 44 "--jobs", 45 "-j", 54 parser.add_argument("--piglit-path", type=str, help="Path to piglit source folder.") 55 parser.add_argument("--glcts-path", type=str, help="Path to GLCTS source folder.") 57 "--parent-path", 62 parser.add_argument("--verbose", "-v", action="count", default=0) 64 "--include-tests", 65 "-t", 69 …help="Only run the test matching this expression. This can only be a filename containing a list of… [all …]
|
| /third_party/mesa3d/docs/relnotes/ |
| D | 12.0.0.rst | 16 ---------------- 20 3b8fa4d86d78f8f6ec86055b92ad1afe869001483593b3dd4531184b8bc4fcfb mesa-12.0.0.tar.gz 21 0090c025219318935124292b482e3439bc43e8c074ad01086449fcad88547dc6 mesa-12.0.0.tar.xz 24 ------------ 28 - OpenGL 4.3 on nvc0, radeonsi, i965 (Gen8+) 29 - OpenGL ES 3.1 on nvc0, radeonsi 30 - GL_ARB_ES3_1_compatibility on nvc0, radeonsi 31 - GL_ARB_compute_shader on nvc0, radeonsi, softpipe 32 - GL_ARB_cull_distance on i965/gen6+, nv50, nvc0, llvmpipe, softpipe 33 - GL_ARB_framebuffer_no_attachments on nvc0, r600, radeonsi, softpipe [all …]
|
| D | 10.6.0.rst | 16 ---------------- 20 9bc659abdba26202509304f259723aaa4343dba6aac4bd87d5baea11d23c8c63 mesa-10.6.0.tar.gz 21 f37e2633978deed02ff0522abc36c709586e2b555fd439a82ab71dce2c866c76 mesa-10.6.0.tar.xz 24 ------------ 28 - GL_AMD_pinned_memory on r600, radeonsi 29 - GL_ARB_clip_control on i965 30 - GL_ARB_depth_buffer_float on freedreno 31 - GL_ARB_depth_clamp on freedreno 32 - GL_ARB_direct_state_access on all drivers that support GL 2.0+ 33 - GL_ARB_draw_indirect, GL_ARB_multi_draw_indirect on r600 [all …]
|
| D | 9.2.rst | 16 ------------- 20 4f93c6475ec656fc1f7b93aeffc9b6c4 MesaLib-9.2.0.tar.gz 21 4185b6aae890bc62a964f4b24cc1aca8 MesaLib-9.2.0.tar.bz2 22 3bc5339bc98b9c37777ffd14e3a8eca4 MesaLib-9.2.0.zip 25 ------------ 29 - GL_ARB_shading_language_420pack in all drivers that support GLSL 31 - GL_ARB_texture_buffer_range 32 - GL_ARB_texture_multisample 33 - GL_ARB_texture_storage_multisample 34 - GL_ARB_texture_query_lod [all …]
|
| D | 9.0.3.rst | 15 ------------- 19 168384ac0101f4600a15edd3561acdc7 MesaLib-9.0.3.tar.gz 20 d7515cc5116c72ac63d735655bd63689 MesaLib-9.0.3.tar.bz2 21 a2e1c794572440fd0d839a7d7dfea00c MesaLib-9.0.3.zip 24 ------------ 29 --------- 33 - `Bug 25201 <https://bugs.freedesktop.org/show_bug.cgi?id=25201>`__ - 35 - `Bug 31598 <https://bugs.freedesktop.org/show_bug.cgi?id=31598>`__ - 37 - `Bug 40404 <https://bugs.freedesktop.org/show_bug.cgi?id=40404>`__ - 38 [softpipe] piglit glsl-max-varyings regression [all …]
|
| D | 10.3.rst | 16 ---------------- 20 9a1bf52040fc3dda81e83a35f944f1c3f532847dbe9fdf57161265cf71ea1bae MesaLib-10.3.0.tar.gz 21 0283bfe710fa449ed82e465cfa09612a269e19abb7e0382082608062ce7960b5 MesaLib-10.3.0.tar.bz2 22 221420763c2c3a244836a736e735612c4a6a0377b4e5223fca1e612f49906789 MesaLib-10.3.0.zip 25 ------------ 29 - GL_ARB_ES3_compatibility on nv50, nvc0, r600, radeonsi, softpipe, 31 - GL_ARB_clear_texture on i965 32 - GL_ARB_compressed_texture_pixel_storage on all drivers 33 - GL_ARB_conditional_render_inverted on i965, nvc0, softpipe, llvmpipe 34 - GL_ARB_derivative_control on i965, nv50, nvc0, r600 [all …]
|
| D | 8.0.5.rst | 15 ------------- 19 cda5d101f43b8784fa60bdeaca4056f2 MesaLib-8.0.5.tar.gz 20 01305591073a76b65267f69f27d635a3 MesaLib-8.0.5.tar.bz2 21 97f11c00cac8fb98aa0131990086dc8e MesaLib-8.0.5.zip 24 ------------ 29 --------- 33 - `Bug 44912 <https://bugs.freedesktop.org/show_bug.cgi?id=44912>`__ - 34 [bisected] WebGL conformance/textures/texture-mips tests fails 35 - `Bug 46644 <https://bugs.freedesktop.org/show_bug.cgi?id=46644>`__ - 38 - `Bug 46784 <https://bugs.freedesktop.org/show_bug.cgi?id=46784>`__ - [all …]
|
| D | 7.9.rst | 16 ------------- 20 ed65ab425b25895c7f473d0a5e6e64f8 MesaLib-7.9.tar.gz 21 82c740c49d572baa6da2b1a1eee90bca MesaLib-7.9.tar.bz2 22 cd2b6ecec759b0457475e94bbb38fedb MesaLib-7.9.zip 23 7b54af9fb9b1f6a1a65db2520f50848f MesaGLUT-7.9.tar.gz 24 20d07419d1929f833fdb36bced290ad5 MesaGLUT-7.9.tar.bz2 25 62a7edecd7c92675cd6029b05217eb0a MesaGLUT-7.9.zip 28 ------------ 30 - New, improved GLSL compiler written by Intel. See the :doc:`Shading 32 - New, very experimental Gallium driver for R600-R700 Radeons. [all …]
|
| D | 7.11.rst | 16 ------------- 20 fa2c7068503133fb2453244cda11cb2a MesaLib-7.11.tar.gz 21 ff03aca82d0560009a076a87c888cf13 MesaLib-7.11.tar.bz2 22 ede1ac0976f6f05df586093fc17d63ed MesaLib-7.11.zip 23 b4fb81a47c5caedaefad49af7702c23d MesaGLUT-7.11.tar.gz 24 77a9a0bbd7f8bca882aa5709b88cb071 MesaGLUT-7.11.tar.bz2 25 c19ef0c6eb61188c96ed4ccedd70717c MesaGLUT-7.11.zip 28 ------------ 30 - GL_ARB_ES2_compatibility (gallium drivers) 31 - GL_ARB_color_buffer_float (gallium drivers, i965) [all …]
|
| D | 10.4.rst | 16 ---------------- 20 abfbfd2d91ce81491c5bb6923ae649212ad5f82d0bee277de8704cc948dc221e MesaLib-10.4.0.tar.gz 21 98a7dff3a1a6708c79789de8b9a05d8042e867067f70e8f30387c15026233219 MesaLib-10.4.0.tar.bz2 22 443a6d46d0691b5ac811d8d30091b1716c365689b16d49c57cf273c2b76086fe MesaLib-10.4.0.zip 25 ------------ 29 - GL_ARB_conditional_render_inverted on nv50 30 - GL_ARB_sample_shading on r600 31 - GL_ARB_texture_view on nv50, nvc0 32 - GL_ARB_clip_control on nv50, nvc0, r300, r600, radeonsi, llvmpipe, 33 softpipe [all …]
|
| D | 11.2.0.rst | 16 ---------------- 20 dea3d8143929aad5c24ef0993ddb05807b30c284b488fc62903adfcc1c127887 mesa-11.2.0.tar.gz 21 1c1fed2674abf3f16ed2623e9a5694d6752c293194e18462ebc644a19cfaafb2 mesa-11.2.0.tar.xz 24 ------------ 28 - GL_ARB_arrays_of_arrays on all gallium drivers that provide GLSL 1.30 29 - GL_ARB_base_instance on freedreno/a4xx 30 - GL_ARB_compute_shader on i965 31 - GL_ARB_copy_image on r600 32 - GL_ARB_indirect_parameters on nvc0 33 - GL_ARB_query_buffer_object on nvc0 [all …]
|
| D | 7.10.rst | 16 ------------- 20 0a70c15c135561824bdcae92bf232e43 MesaLib-7.10.tar.gz 21 33fb94eccc02cbb4d8d1365615e38e46 MesaLib-7.10.tar.bz2 22 5cafdc0eda0f9bf370b95c98df3338fa MesaLib-7.10.zip 23 bc644be551ed585fc4f66c16b64a91c9 MesaGLUT-7.10.tar.gz 24 5c2677a155672352d62b177e4f0f92e8 MesaGLUT-7.10.tar.bz2 25 2ce5001f74496d1ba719ef74d910a5cf MesaGLUT-7.10.zip 28 ------------ 30 - GL_ARB_explicit_attrib_location extension (Intel and software 32 - GL_ARB_texture_rg (Intel, software drivers, gallium drivers). [all …]
|
| D | 7.11.1.rst | 15 ------------- 19 ac0181a4076770fb657c1169af43aa09 MesaLib-7.11.1.tar.gz 20 a77307102cee844ff6544ffa8fafeac1 MesaLib-7.11.1.tar.bz2 21 dfcb11516c1730f3981b55a65a835623 MesaLib-7.11.1.zip 22 2cb2b9ecb4fb7d1a6be69346ee886952 MesaGLUT-7.11.1.tar.gz 23 3f54e314290d4dacbab089839197080b MesaGLUT-7.11.1.tar.bz2 24 5d66c7ee8c5cc2f27e1ffb037ad4172c MesaGLUT-7.11.1.zip 27 ------------ 32 --------- 36 - `Bug 3165 <https://bugs.freedesktop.org/show_bug.cgi?id=3165>`__ - [all …]
|
| D | 10.0.rst | 16 ------------- 20 b38626b96c664db67a534d7859682436 MesaLib-10.0.0.tar.gz 21 f3fe55d9735bea158bbe97ed9a0da819 MesaLib-10.0.0.tar.bz2 22 c6ee1ce51e3bf35947d2978b872daf51 MesaLib-10.0.0.zip 25 ------------ 29 - GL_AMD_seamless_cubemap_per_texture on i965. 30 - GL_ARB_conservative_depth on i965. 31 - GL_ARB_texture_gather on i965. 32 - GL_ARB_texture_query_levels on i965. 33 - GL_ARB_texture_mirror_clamp_to_edge. [all …]
|
| D | 19.1.0.rst | 17 ---------------- 21 2a6c3af3a803389183168e449c536304cf03e0f82c4c9333077933543b9d02f3 mesa-19.1.0.tar.xz 24 ------------ 26 - GL_ARB_parallel_shader_compile on all drivers. 27 - GL_EXT_gpu_shader4 on all GL 3.1 drivers. 28 - GL_EXT_shader_image_load_formatted on radeonsi. 29 - GL_EXT_texture_buffer_object on all GL 3.1 drivers. 30 - GL_EXT_texture_compression_s3tc_srgb on Gallium drivers and i965 (ES 32 - GL_NV_compute_shader_derivatives on iris and i965. 33 - GL_KHR_parallel_shader_compile on all drivers. [all …]
|
| /third_party/mesa3d/.gitlab-ci/build/ |
| D | gitlab-ci.yml | 2 .build-common: 3 extends: .container+build-rules 7 # Build jobs don't take more than 1-3 minutes. 5-8 min max on a fresh runner 22 - _build/meson-logs/*.txt 23 - _build/meson-logs/strace 24 - _build/.ninja_log 25 - artifacts 28 .build-linux: 29 extends: .build-common 36 - !reference [default, before_script] [all …]
|
| /third_party/mesa3d/src/microsoft/ci/ |
| D | gitlab-ci-inc.yml | 1 .windows-docker-tags: 3 - windows 4 - docker 5 - "2022" 6 - mesa 8 .windows-shell-tags: 10 - windows 11 - shell 12 - "2022" 13 - mesa [all …]
|
| /third_party/mesa3d/src/gallium/targets/d3d10umd/ |
| D | README.md | 1 When compiled with `gallium-driver=llvmpipe` or `gallium-driver=softpipe` the resulting libgallium_… 4 It can be used directly from WLK 1.6 and WHCK 2.0 D3D10+ tests, via the -Src 5 and -SWDLL options. For example: 7 …wgf11blend.exe -Debug -DoNotCatchExceptions -DXGI:1.1 -FeatureLevel:10.0 -Src:SW -SWDLL:libgallium… 12 it such that it matches the D3D10 UMD of the test machine). 49 See also https://docs.microsoft.com/en-us/windows/win32/dlls/dynamic-link-library-search-order
|
| /third_party/mesa3d/docs/ci/ |
| D | docker.rst | 4 For LLVMpipe and Softpipe CI, we run tests in a container containing 5 VK-GL-CTS, on the shared GitLab runners provided by `freedesktop 9 --------------------- 12 .gitlab-ci/container/ when the FDO\_DISTRIBUTION\_TAG changes in 13 .gitlab-ci.yml. The resulting images are around 1 GB, and are 18 gitlab-runner is a client that polls gitlab.freedesktop.org for 20 have tags, so we can have DUT-specific jobs that only run on runners 25 deqp-runner.sh takes the corresponding fraction of the test list for 29 deqp-runner.sh invocation can provide a list of tests to skip. If 35 ---------------- [all …]
|