2013-12-27 20:18:20 +01:00
|
|
|
############################################################################
|
2018-05-29 21:21:26 +02:00
|
|
|
# libs/libnx/nxglib/Make.defs
|
2013-12-27 20:18:20 +01:00
|
|
|
#
|
2021-02-23 19:55:00 +01:00
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
|
|
# this work for additional information regarding copyright ownership. The
|
|
|
|
# ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
# "License"); you may not use this file except in compliance with the
|
|
|
|
# License. You may obtain a copy of the License at
|
2013-12-27 20:18:20 +01:00
|
|
|
#
|
2021-02-23 19:55:00 +01:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2013-12-27 20:18:20 +01:00
|
|
|
#
|
2021-02-23 19:55:00 +01:00
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
# under the License.
|
2013-12-27 20:18:20 +01:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
2013-12-27 21:49:40 +01:00
|
|
|
# Expose NXGL interfaces to applications
|
2013-12-27 20:18:20 +01:00
|
|
|
|
2017-11-18 17:19:34 +01:00
|
|
|
ifeq ($(CONFIG_NXGLIB),y)
|
|
|
|
|
|
|
|
# Files needed by both NX and NXFONTS
|
|
|
|
|
|
|
|
CSRCS += nxglib_rgbblend.c
|
2013-12-27 20:18:20 +01:00
|
|
|
|
2017-11-18 17:19:34 +01:00
|
|
|
# Files needed only by NX
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_NX),y)
|
2020-06-04 04:35:50 +02:00
|
|
|
CSRCS += nxgl_area2rect.c nxglib_circlepts.c nxglib_circletraps.c
|
|
|
|
CSRCS += nxglib_intersecting.c nxglib_nonintersecting.c nxglib_nullrect.c
|
|
|
|
CSRCS += nxgl_rect2area.c nxglib_rectadd.c nxglib_rectcopy.c nxglib_rectinside.c
|
|
|
|
CSRCS += nxglib_rectintersect.c nxglib_rectoffset.c nxglib_rectoverlap.c
|
|
|
|
CSRCS += nxglib_rectsize.c nxglib_rectunion.c nxglib_rgb2yuv.c
|
2015-07-14 15:57:54 +02:00
|
|
|
CSRCS += nxglib_runcopy.c nxglib_runoffset.c nxglib_splitline.c
|
|
|
|
CSRCS += nxglib_trapcopy.c nxglib_trapoffset.c nxglib_vectoradd.c
|
|
|
|
CSRCS += nxglib_vectsubtract.c nxglib_yuv2rgb.c
|
2014-07-12 15:44:56 +02:00
|
|
|
|
|
|
|
ifneq ($(CONFIG_NX_NPLANES),1)
|
|
|
|
CSRCS += nxglib_colorcmp.c nxglib_colorcopy.c
|
|
|
|
endif
|
2017-11-18 17:19:34 +01:00
|
|
|
endif
|
2013-12-27 20:18:20 +01:00
|
|
|
|
2013-12-27 22:51:26 +01:00
|
|
|
# Add the nxglib/ directory to the build
|
2013-12-27 21:30:13 +01:00
|
|
|
|
2013-12-27 22:51:26 +01:00
|
|
|
DEPPATH += --dep-path nxglib
|
|
|
|
VPATH += :nxglib
|
2013-12-27 20:18:20 +01:00
|
|
|
|
2013-12-27 22:51:26 +01:00
|
|
|
endif
|