At this point, blorp is completely driver agnostic and can be safely moved into its own folder. Soon, we hope to start using it for doing blits in the Vulkan driver. Signed-off-by: Jason Ekstrand <jason@jlekstrand.net> Reviewed-by: Topi Pohjolainen <topi.pohjolainen@intel.com>tags/13.0-branchpoint
@@ -0,0 +1,47 @@ | |||
# Copyright © 2016 Intel Corporation | |||
# Copyright © 2016 Mauro Rossi <issor.oruam@gmail.com> | |||
# | |||
# 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 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. | |||
# --------------------------------------- | |||
# Build libmesa_blorp | |||
# --------------------------------------- | |||
include $(CLEAR_VARS) | |||
LOCAL_MODULE := libmesa_blorp | |||
LOCAL_MODULE_CLASS := STATIC_LIBRARIES | |||
LOCAL_SRC_FILES := $(BLORP_FILES) | |||
LOCAL_C_INCLUDES := := \ | |||
$(call generated-sources-dir-for,STATIC_LIBRARIES,libmesa_nir,,)/nir \ | |||
$(MESA_TOP)/src/gallium/auxiliary \ | |||
$(MESA_TOP)/src/gallium/include \ | |||
$(MESA_TOP)/src/mapi \ | |||
$(MESA_TOP)/src/mesa \ | |||
$(MESA_TOP)/src/mesa/drivers/dri/i965 | |||
LOCAL_STATIC_LIBRARIES := libmesa_nir | |||
LOCAL_SHARED_LIBRARIES := libdrm_intel | |||
include $(MESA_COMMON_MK) | |||
include $(BUILD_STATIC_LIBRARY) |
@@ -25,5 +25,6 @@ LOCAL_PATH := $(call my-dir) | |||
# Import variables | |||
include $(LOCAL_PATH)/Makefile.sources | |||
include $(LOCAL_PATH)/Android.blorp.mk | |||
include $(LOCAL_PATH)/Android.genxml.mk | |||
include $(LOCAL_PATH)/Android.isl.mk |
@@ -26,6 +26,7 @@ AM_CPPFLAGS = \ | |||
-I$(top_srcdir)/include \ | |||
-I$(top_builddir)/src \ | |||
-I$(top_srcdir)/src \ | |||
-I$(top_builddir)/src/compiler/nir \ | |||
-I$(top_builddir)/src/intel \ | |||
-I$(top_srcdir)/src/intel \ | |||
-I$(top_srcdir)/src/mapi \ | |||
@@ -51,6 +52,7 @@ BUILT_SOURCES = | |||
CLEANFILES = | |||
EXTRA_DIST = | |||
include Makefile.blorp.am | |||
include Makefile.genxml.am | |||
include Makefile.isl.am | |||
@@ -0,0 +1,24 @@ | |||
# Copyright 2015-2016 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. | |||
noinst_LTLIBRARIES += blorp/libblorp.la | |||
blorp_libblorp_la_SOURCES = $(BLORP_FILES) |
@@ -1,3 +1,11 @@ | |||
BLORP_FILES = \ | |||
blorp/blorp.c \ | |||
blorp/blorp.h \ | |||
blorp/blorp_blit.c \ | |||
blorp/blorp_clear.c \ | |||
blorp/blorp_genX_exec.h \ | |||
blorp/blorp_priv.h | |||
GENXML_GENERATED_FILES = \ | |||
genxml/gen4_pack.h \ | |||
genxml/gen45_pack.h \ |
@@ -23,6 +23,8 @@ | |||
#include <errno.h> | |||
#include "program/prog_instruction.h" | |||
#include "blorp_priv.h" | |||
#include "brw_compiler.h" | |||
#include "brw_nir.h" |
@@ -26,7 +26,7 @@ | |||
#include "blorp_priv.h" | |||
#include "brw_defines.h" | |||
#include "nir_builder.h" | |||
#include "compiler/nir/nir_builder.h" | |||
#define FILE_DEBUG_FLAG DEBUG_BLORP | |||
@@ -183,6 +183,7 @@ LOCAL_SRC_FILES := \ | |||
LOCAL_WHOLE_STATIC_LIBRARIES := \ | |||
$(MESA_DRI_WHOLE_STATIC_LIBRARIES) \ | |||
$(I965_PERGEN_LIBS) \ | |||
libmesa_blorp \ | |||
libmesa_isl | |||
LOCAL_SHARED_LIBRARIES := \ |
@@ -79,6 +79,7 @@ libi965_dri_la_SOURCES = $(i965_FILES) | |||
libi965_dri_la_LIBADD = \ | |||
$(top_builddir)/src/intel/isl/libisl.la \ | |||
libi965_compiler.la \ | |||
$(top_builddir)/src/intel/blorp/libblorp.la \ | |||
$(I965_PERGEN_LIBS) \ | |||
$(INTEL_LIBS) | |||
@@ -95,11 +95,6 @@ i965_compiler_GENERATED_FILES = \ | |||
brw_nir_trig_workarounds.c | |||
i965_FILES = \ | |||
blorp.c \ | |||
blorp.h \ | |||
blorp_blit.c \ | |||
blorp_clear.c \ | |||
blorp_priv.h \ | |||
brw_binding_tables.c \ | |||
brw_blorp.c \ | |||
brw_blorp.h \ | |||
@@ -259,21 +254,16 @@ i965_FILES = \ | |||
intel_upload.c | |||
i965_gen6_FILES = \ | |||
genX_blorp_exec.c \ | |||
genX_blorp_exec.h | |||
genX_blorp_exec.c | |||
i965_gen7_FILES = \ | |||
genX_blorp_exec.c \ | |||
genX_blorp_exec.h | |||
genX_blorp_exec.c | |||
i965_gen75_FILES = \ | |||
genX_blorp_exec.c \ | |||
genX_blorp_exec.h | |||
genX_blorp_exec.c | |||
i965_gen8_FILES = \ | |||
genX_blorp_exec.c \ | |||
genX_blorp_exec.h | |||
genX_blorp_exec.c | |||
i965_gen9_FILES = \ | |||
genX_blorp_exec.c \ | |||
genX_blorp_exec.h | |||
genX_blorp_exec.c |
@@ -23,7 +23,7 @@ | |||
#pragma once | |||
#include "blorp.h" | |||
#include "blorp/blorp.h" | |||
#include "intel_mipmap_tree.h" | |||
#include "program/prog_instruction.h" | |||
@@ -41,7 +41,7 @@ | |||
#include "intel_aub.h" | |||
#include "isl/isl.h" | |||
#include "blorp.h" | |||
#include "blorp/blorp.h" | |||
#ifdef __cplusplus | |||
extern "C" { |
@@ -29,7 +29,7 @@ | |||
#include "brw_context.h" | |||
#include "brw_state.h" | |||
#include "genX_blorp_exec.h" | |||
#include "blorp/blorp_genX_exec.h" | |||
#include "brw_blorp.h" | |||
@@ -24,7 +24,7 @@ | |||
#pragma once | |||
#include <stdint.h> | |||
#include "blorp.h" | |||
#include "blorp/blorp.h" | |||
#include "compiler/glsl/list.h" | |||
#ifdef __cplusplus |