Skip to content
Snippets Groups Projects
  1. Jul 07, 2023
  2. Jun 09, 2023
    • Yabin Cui's avatar
      Suppress sync-alignment warning · 74d6aa19
      Yabin Cui authored
      After clang update, build reports below errors:
      
      external/mesa3d/src/util/disk_cache_os.c:480:7: error: __sync builtin operation MUST
      have natural alignment (consider using __atomic). [-Werror,-Wsync-alignment]
      p_atomic_add(cache->size, - (uint64_t)size);
      ^
      external/mesa3d/src/util/u_atomic.h:62:35: note: expanded from macro 'p_atomic_add'
      \#define p_atomic_add(v, i) (void) __sync_add_and_fetch((v), (i))
      ^
      external/mesa3d/src/util/disk_cache_os.c:502:7: error: __sync builtin operation MUST
      have natural alignment (consider using __atomic). [-Werror,-Wsync-alignment]
      p_atomic_add(cache->size, - (uint64_t)size);
      ^
      external/mesa3d/src/util/u_atomic.h:62:35: note: expanded from macro 'p_atomic_add'
      \#define p_atomic_add(v, i) (void) __sync_add_and_fetch((v), (i))
      ^
      
      Bug: 286421485
      Test: build
      Change-Id: I08c20f3712cabe6b42f50ecc4518c497b16eb2eb
      74d6aa19
  3. May 16, 2023
  4. May 05, 2023
  5. May 04, 2023
    • Colin Cross's avatar
      Read MESA_VERSION once · bd295209
      Colin Cross authored
      There is no need to re-read MESA_VERSION every time, and it is showing
      up at the top of kati's $(shell) usage list:
      verbose: *kati*:   0.217 / 109 cat external/mesa3d/VERSION
      
      Test: builds
      Change-Id: Ic6f2903a093a3704e4749c9d8c66f7a739e74352
      bd295209
  6. Apr 29, 2023
    • Luca Stefani's avatar
      Fixup freedren bison/lex usage · 61abc3e1
      Luca Stefani authored
      All the calls to bison and flex were duplicated.
      
      The bison calls were missing the M4 env variable
      causing the usage of m4 from $PATH instead of prebuilts.
      
      Seems like mesa had already in place a way to make
      use use proper calls to flex, we augment that to also
      support bison ( depending Android version )
      
      Change-Id: Ibe4e9224b23c7574975df1c7101c69581bc353b4
      61abc3e1
  7. Dec 06, 2022
  8. Dec 01, 2022
  9. Nov 01, 2022
  10. Oct 27, 2022
  11. Sep 29, 2022
  12. Aug 17, 2022
  13. Jun 20, 2022
  14. Jun 17, 2022
    • Xin Li's avatar
      Merge SQ3A.220605.009 · e5621296
      Xin Li authored
      Bug: 236045730
      Merged-In: Id84c042e46b2c8af088a63182e36eda910a748e2
      Change-Id: Ia8002b4fff23fe47843fb7dbf66f1f5c1fe77e98
      e5621296
  15. Apr 27, 2022
  16. Apr 25, 2022
    • Robert Tarasov's avatar
      Fixes YV12 image creation crash · d007afcf
      Robert Tarasov authored
      Workaround to address yv12 image creation crash in some CTS and CTS-V
      tests due to lack of ycrcb routine gralloc4. This workaround doesn't
      fix a render correctness and some tests will fail, but at lest they
      will finish without crashes.
      
      Bug: 225392099
      Bug: 227530308
      
      Test: Tested CTS-V "Projection Video Playback Test" on Osprey
      Test: Tested CtsPermissionTestCases module on Osprey
      
      Change-Id: Id84c042e46b2c8af088a63182e36eda910a748e2
      d007afcf
Loading