diff options
author | Marek Olšák <[email protected]> | 2019-12-03 18:01:31 -0500 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2020-05-13 13:46:53 -0400 |
commit | d6287a94b697ffe12a4e576a38943cdf4e90cdb0 (patch) | |
tree | bb84357d98dc74412e983693e09875bb355b467e /src/gallium/targets/libgl-gdi | |
parent | b408734e5e2fe1e1ef08080c4425ad8a7ed33579 (diff) |
gallium: rename 'state tracker' to 'frontend'
Acked-by: Eric Anholt <[email protected]>
Acked-by: Alyssa Rosenzweig <[email protected]>
Acked-by: Pierre-Eric Pelloux-Prayer <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4902>
Diffstat (limited to 'src/gallium/targets/libgl-gdi')
-rw-r--r-- | src/gallium/targets/libgl-gdi/SConscript | 6 | ||||
-rw-r--r-- | src/gallium/targets/libgl-gdi/meson.build | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/gallium/targets/libgl-gdi/SConscript b/src/gallium/targets/libgl-gdi/SConscript index efc0c5b2ea1..5255125ca09 100644 --- a/src/gallium/targets/libgl-gdi/SConscript +++ b/src/gallium/targets/libgl-gdi/SConscript @@ -7,7 +7,7 @@ env = env.Clone() env.Append(CPPPATH = [ '#src', - '#src/gallium/state_trackers/wgl', + '#src/gallium/frontends/wgl', '#src/gallium/winsys/sw', ]) @@ -38,9 +38,9 @@ if env['llvm']: if env['gcc'] and env['machine'] != 'x86_64': # DEF parser in certain versions of MinGW is busted, as does not behave as # MSVC. mingw-w64 works fine. - sources += ['#src/gallium/state_trackers/wgl/opengl32.mingw.def'] + sources += ['#src/gallium/frontends/wgl/opengl32.mingw.def'] else: - sources += ['#src/gallium/state_trackers/wgl/opengl32.def'] + sources += ['#src/gallium/frontends/wgl/opengl32.def'] env['no_import_lib'] = 1 diff --git a/src/gallium/targets/libgl-gdi/meson.build b/src/gallium/targets/libgl-gdi/meson.build index 6332267fff4..d7539442df4 100644 --- a/src/gallium/targets/libgl-gdi/meson.build +++ b/src/gallium/targets/libgl-gdi/meson.build @@ -21,9 +21,9 @@ # DEF parser in certain versions of MinGW is busted, as does not behave as # MSVC. mingw-w64 works fine. if cc.get_id() == 'gcc' and host_machine.cpu_family() != 'x86_64' - ogldef = files('../../state_trackers/wgl/opengl32.mingw.def')[0] + ogldef = files('../../frontends/wgl/opengl32.mingw.def')[0] else - ogldef = files('../../state_trackers/wgl/opengl32.def')[0] + ogldef = files('../../frontends/wgl/opengl32.def')[0] endif libopengl32 = shared_library( |