/external/igt-gpu-tools/tests/ |
D | prime_nv_test.c | 1 /* basic set of prime tests between intel and nouveau */ 4 1. share buffer from intel -> nouveau. 5 2. share buffer from nouveau -> intel 6 3. share intel->nouveau, map on both, write intel, read nouveau 7 4. share intel->nouveau, blit intel fill, readback on nouveau 13 TODO add some nouveau rendering tests 27 #include "nouveau.h" 80 * retrive buffer from nouveau, 104 * allocate buffer on nouveau 129 * allocate intel, give to nouveau, map on nouveau [all …]
|
D | prime_udl.c | 1 /* basic set of prime tests between intel and nouveau */ 4 1. share buffer from intel -> nouveau. 5 2. share buffer from nouveau -> intel 6 3. share intel->nouveau, map on both, write intel, read nouveau 7 4. share intel->nouveau, blit intel fill, readback on nouveau 13 TODO add some nouveau rendering tests
|
D | prime_nv_api.c | 3 /* test1- export buffer from intel, import same fd twice into nouveau, 7 test3 - export buffer from intel, import twice on nouveau, check handle is the same 8 test4 - export handle twice from intel, import into nouveau twice, check handle is the same 19 #include "nouveau.h" 294 /* nouveau export reimport test */ 331 /* nouveau export reimport to other driver test */ 369 /* set up nouveau bufmgr */ 373 /* set up nouveau bufmgr */
|
/external/libdrm/nouveau/ |
D | meson.build | 24 [files( 'nouveau.c', 'pushbuf.c', 'bufctx.c', 'abi16.c'), config_file], 38 install_headers('nouveau.h', subdir : 'libdrm/nouveau') 42 subdir : 'libdrm/nouveau/nvif' 48 subdirs : ['.', 'libdrm', 'libdrm/nouveau'], 51 description : 'Userspace interface to nouveau kernel DRM services', 55 'nouveau-symbol-check', 58 args : [files('nouveau-symbol-check'), libdrm_nouveau]
|
D | Makefile.am | 18 libdrm_nouveauincludedir = ${includedir}/libdrm/nouveau 21 libdrm_nouveaunvifincludedir = ${includedir}/libdrm/nouveau/nvif 34 TESTS = nouveau-symbol-check
|
D | Makefile.sources | 2 nouveau.c \ 9 nouveau.h
|
D | libdrm_nouveau.pc.in | 7 Description: Userspace interface to nouveau kernel DRM services 10 Cflags: -I${includedir} -I${includedir}/libdrm -I${includedir}/libdrm/nouveau
|
D | private.h | 10 #include "nouveau.h" 17 fprintf(stderr, "nouveau: "fmt, ##args); \ 23 #define err(fmt, args...) fprintf(stderr, "nouveau: "fmt, ##args)
|
/external/mesa3d/docs/relnotes/ |
D | 10.2.8.rst | 69 - nouveau: only enable the depth test if there actually is a depth 71 - nouveau: only enable stencil func if the visual has stencil bits 72 - nouveau: change internal variables to avoid conflicts with macro args 84 - nouveau: re-allocate bo's on overflow 85 - nouveau: fix MPEG4 hw decoding 86 - nouveau: rework reference frame handling 87 - nouveau: remove unneeded assert
|
D | 11.0.3.rst | 67 - Revert "nouveau: make sure there's always room to emit a fence" 80 - nouveau: be more careful about freeing temporary transfer buffers 81 - nouveau: delay deleting buffer with unflushed fence 82 - nouveau: wait to unref the transfer's bo until it's no longer used 85 - nouveau: make sure there's always room to emit a fence
|
D | 10.0.5.rst | 65 gallium nouveau has no profile in vdpau and libva 122 - nouveau: fix fence waiting logic in screen destroy 125 - nouveau: add forgotten GL_COMPRESSED_INTENSITY to texture format list 126 - nouveau: there may not have been a texture if the fbo was incomplete 127 - nouveau: fix firmware check on nvd7/nvd9
|
D | 10.1.1.rst | 52 gallium nouveau has no profile in vdpau and libva 141 - nouveau: fix fence waiting logic in screen destroy 143 - loader: add special logic to distinguish nouveau from nouveau_vieux 145 - nouveau: add forgotten GL_COMPRESSED_INTENSITY to texture format list 146 - nouveau: there may not have been a texture if the fbo was incomplete 148 - nouveau: fix firmware check on nvd7/nvd9
|
D | 10.0.1.rst | 92 - nouveau: avoid leaking fences while waiting 95 - nouveau/video: update h264 picparm field names based on usage 96 - nouveau/video: update a few more h264 picparm field names 110 - nouveau: Fix compiler warning regression
|
D | 10.2.7.rst | 57 [NVC0] Dota 2 (Linux native and Wine) crash with Nouveau Drivers 99 - android: gallium/nouveau: fix include folders, link against 101 - android: egl/main: fixup the nouveau build 125 - nouveau: make sure to invalidate any vbo state as well 126 - nouveau: don't keep stale pointer to free'd data
|
/external/libdrm/ |
D | configure.ac | 116 AC_ARG_ENABLE(nouveau, optenable 117 AS_HELP_STRING([--disable-nouveau], 118 [Enable support for nouveau's KMS API (default: auto)]), 119 [NOUVEAU=$enableval], [NOUVEAU=auto]) 276 dnl $1 - value to be evaluated. Eg. $INTEL, $NOUVEAU, ... 298 LIBDRM_ATOMICS_NOT_FOUND_MSG($NOUVEAU, nouveau, NVIDIA, nouveau) 299 NOUVEAU=no 325 if test "x$NOUVEAU" = xauto; then 326 NOUVEAU=yes 381 AM_CONDITIONAL(HAVE_NOUVEAU, [test "x$NOUVEAU" = xyes]) [all …]
|
D | Makefile.am | 32 --enable-nouveau \ 58 NOUVEAU_SUBDIR = nouveau 149 nouveau/meson.build \ 161 tests/nouveau/meson.build \
|
/external/igt-gpu-tools/ |
D | configure.ac | 236 AC_ARG_ENABLE(nouveau, AS_HELP_STRING([--disable-nouveau], optenable 237 [Enable use of nouveau API for prime tests (default: auto)]), 238 [NOUVEAU=$enableval], [NOUVEAU=auto]) 239 if test "x$NOUVEAU" = xauto; then 240 PKG_CHECK_EXISTS([libdrm_nouveau >= 2.4.33], [NOUVEAU=yes], [NOUVEAU=no]) 242 if test "x$NOUVEAU" = xyes; then 244 AC_DEFINE(HAVE_LIBDRM_NOUVEAU, 1, [Have nouveau support]) 246 AM_CONDITIONAL(HAVE_LIBDRM_NOUVEAU, [test "x$NOUVEAU" = xyes]) 328 echo " Compile prime tests: ${NOUVEAU}"
|
/external/libdrm/tests/nouveau/ |
D | threaded.c | 32 #include "nouveau.h" 82 fd = drmOpenWithType("nouveau", NULL, DRM_NODE_RENDER); in main() 84 fd2 = drmOpenWithType("nouveau", NULL, DRM_NODE_RENDER); in main() 96 fprintf(stderr, "Opening nouveau render node failed with %i\n", fd); in main() 101 fprintf(stderr, "Opening second nouveau render node failed with %i\n", -errno); in main()
|
D | Makefile.am | 6 -I$(top_srcdir)/nouveau \ 10 ../../nouveau/libdrm_nouveau.la \
|
/external/icu/icu4c/source/data/curr/ |
D | fr.txt | 47 "nouveau kwanza angolais (1990–2000)", 151 "nouveau cruzeiro brésilien (1967–1986)", 167 "nouveau cruzado", 191 "nouveau rouble biélorusse (1994–1999)", 459 "nouveau shekel israélien", 895 "nouveau manat turkmène", 923 "nouveau dollar taïwanais", 1083 "nouveau dinar yougoslave", 1111 "nouveau zaïre zaïrien", 1272 one{"nouveau kwanza angolais (1990–2000)"} [all …]
|
D | fr_CA.txt | 71 "nouveau shekel israélien", 115 "nouveau sol péruvien", 230 one{"nouveau sol péruvien"}
|
/external/mesa3d/src/freedreno/registers/hdmi/ |
D | qfprom.xml | 2 <database xmlns="http://nouveau.freedesktop.org/" 4 xsi:schemaLocation="http://nouveau.freedesktop.org/ rules-ng.xsd">
|
/external/mesa3d/src/freedreno/registers/dsi/ |
D | sfpb.xml | 2 <database xmlns="http://nouveau.freedesktop.org/" 4 xsi:schemaLocation="http://nouveau.freedesktop.org/ rules-ng.xsd">
|
/external/mesa3d/src/freedreno/registers/ |
D | adreno.xml | 2 <database xmlns="http://nouveau.freedesktop.org/" 4 xsi:schemaLocation="http://nouveau.freedesktop.org/ rules-ng.xsd">
|
/external/mesa3d/src/gallium/drivers/nouveau/ |
D | nouveau_vp3_video.c | 240 sprintf(path, "/lib/firmware/nouveau/vuc-vp3-mpeg12-0"); in vp3_getpath() 244 sprintf(path, "/lib/firmware/nouveau/vuc-vp3-vc1-0"); in vp3_getpath() 248 sprintf(path, "/lib/firmware/nouveau/vuc-vp3-h264-0"); in vp3_getpath() 259 sprintf(path, "/lib/firmware/nouveau/vuc-mpeg12-0"); in vp4_getpath() 263 sprintf(path, "/lib/firmware/nouveau/vuc-mpeg4-0"); in vp4_getpath() 267 sprintf(path, "/lib/firmware/nouveau/vuc-vc1-0"); in vp4_getpath() 271 sprintf(path, "/lib/firmware/nouveau/vuc-h264-0"); in vp4_getpath()
|