mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 22:38:05 +02:00
compiler/glsl: fix include for Android build
Sources outside of src/util path should include "util/string_buffer.h"
Fixes the following building error in Android:
external/mesa/src/compiler/glsl/ast_type.cpp:25:10: fatal error: 'string_buffer.h' file not found
^~~~~~~~~~~~~~~~~
1 error generated.
Fixes: eeec9d56ad ("compiler/glsl: clean up output")
Reviewed-by: Tapani Pälli <tapani.palli@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10156>
This commit is contained in:
parent
44ed8378bf
commit
492c8f1709
1 changed files with 1 additions and 1 deletions
|
|
@ -22,7 +22,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "ast.h"
|
#include "ast.h"
|
||||||
#include "string_buffer.h"
|
#include "util/string_buffer.h"
|
||||||
|
|
||||||
void
|
void
|
||||||
ast_type_specifier::print(void) const
|
ast_type_specifier::print(void) const
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue