mirror of
https://gitee.com/openharmony/third_party_mesa3d
synced 2024-11-24 16:00:56 +00:00
compiler: introduce a libcompiler static library
Currently it's an empty library, although it'll be used to store common code between GLSL and NIR that is compiler specific (rather than generic as the one in src/util). XXX: strictly speaking we could add a python/mako parser to generate the relevant files instead including builtin_type_macros.h in such a manner. Signed-off-by: Emil Velikov <emil.velikov@collabora.com> Acked-by: Matt Turner <mattst88@gmail.com> Acked-by: Jose Fonseca <jfonseca@vmware.com>
This commit is contained in:
parent
41875ac4ed
commit
2f86383091
@ -2436,6 +2436,7 @@ CXXFLAGS="$CXXFLAGS $USER_CXXFLAGS"
|
||||
dnl Substitute the config
|
||||
AC_CONFIG_FILES([Makefile
|
||||
src/Makefile
|
||||
src/compiler/Makefile
|
||||
src/egl/Makefile
|
||||
src/egl/main/egl.pc
|
||||
src/egl/wayland/wayland-drm/Makefile
|
||||
|
@ -21,6 +21,9 @@
|
||||
|
||||
SUBDIRS = . gtest util mapi/glapi/gen mapi
|
||||
|
||||
# include only conditionally ?
|
||||
SUBDIRS += compiler
|
||||
|
||||
if NEED_OPENGL_COMMON
|
||||
SUBDIRS += glsl mesa
|
||||
endif
|
||||
|
25
src/compiler/Makefile.am
Normal file
25
src/compiler/Makefile.am
Normal file
@ -0,0 +1,25 @@
|
||||
#
|
||||
# Copyright (C) 2015 Intel Corporation
|
||||
#
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a
|
||||
# copy of this software and associated documentation files (the "Software"),
|
||||
# to deal in the Software without restriction, including without limitation
|
||||
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
# and/or sell copies of the Software, and to permit persons to whom the
|
||||
# Software is furnished to do so, subject to the following conditions:
|
||||
#
|
||||
# The above copyright notice and this permission notice (including the next
|
||||
# paragraph) shall be included in all copies or substantial portions of the
|
||||
# Software.
|
||||
#
|
||||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
# IN THE SOFTWARE.
|
||||
|
||||
include Makefile.sources
|
||||
|
||||
EXTRA_DIST = $(LIBCOMPILER_FILES)
|
2
src/compiler/Makefile.sources
Normal file
2
src/compiler/Makefile.sources
Normal file
@ -0,0 +1,2 @@
|
||||
LIBCOMPILER_FILES = \
|
||||
builtin_type_macros.h
|
@ -20,7 +20,6 @@ NIR_GENERATED_FILES = \
|
||||
NIR_FILES = \
|
||||
nir/glsl_types.cpp \
|
||||
nir/glsl_types.h \
|
||||
nir/builtin_type_macros.h \
|
||||
nir/nir.c \
|
||||
nir/nir.h \
|
||||
nir/nir_array.h \
|
||||
|
@ -112,7 +112,7 @@ static const struct glsl_struct_field gl_FogParameters_fields[] = {
|
||||
glsl_struct_field(glsl_type::float_type, "scale"),
|
||||
};
|
||||
|
||||
#include "builtin_type_macros.h"
|
||||
#include "compiler/builtin_type_macros.h"
|
||||
/** @} */
|
||||
|
||||
/**
|
||||
|
@ -1754,5 +1754,5 @@ glsl_type::coordinate_components() const
|
||||
|
||||
#define STRUCT_TYPE(NAME)
|
||||
|
||||
#include "builtin_type_macros.h"
|
||||
#include "compiler/builtin_type_macros.h"
|
||||
/** @} */
|
||||
|
@ -201,7 +201,7 @@ struct glsl_type {
|
||||
#undef STRUCT_TYPE
|
||||
#define STRUCT_TYPE(NAME) \
|
||||
static const glsl_type *const struct_##NAME##_type;
|
||||
#include "builtin_type_macros.h"
|
||||
#include "compiler/builtin_type_macros.h"
|
||||
/*@}*/
|
||||
|
||||
/**
|
||||
@ -787,7 +787,7 @@ private:
|
||||
#define DECL_TYPE(NAME, ...) static const glsl_type _##NAME##_type;
|
||||
#undef STRUCT_TYPE
|
||||
#define STRUCT_TYPE(NAME) static const glsl_type _struct_##NAME##_type;
|
||||
#include "builtin_type_macros.h"
|
||||
#include "compiler/builtin_type_macros.h"
|
||||
/*@}*/
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user