search for: c_sources

Displaying 12 results from an estimated 12 matches for "c_sources".

2012 Feb 03
1
Compilation of .C into .dll
Hello, Computing language really isn't a strength of mine - I'm trying to run a model which has been passed on to me and I need to convert it into a dll, so it is usable in R, but I'm finding the documentation very hard to follow. Could someone possibly provide me a very quick script to do this using the Command Prompt function (I'm using Windows 7). Details as follow:
2014 Nov 28
0
[Mesa-dev] [RFC] tegra: Initial support
...gt; +include $(top_srcdir)/src/gallium/Automake.inc > + > +AM_CFLAGS = \ > + -I$(top_srcdir)/src/gallium/drivers \ > + $(GALLIUM_WINSYS_CFLAGS) \ > + $(FREEDRENO_CFLAGS) oops? > + > +noinst_LTLIBRARIES = libtegradrm.la > + > +libtegradrm_la_SOURCES = $(C_SOURCES)
2014 Nov 27
7
[RFC] tegra: Initial support
.../tegra/Makefile.am @@ -0,0 +1,17 @@ +AUTOMAKE_OPTIONS = subdir-objects + +include Makefile.sources +include $(top_srcdir)/src/gallium/Automake.inc + +AM_CFLAGS = \ + $(GALLIUM_DRIVER_CFLAGS) \ + $(LIBUDEV_CFLAGS) \ + $(TEGRA_CFLAGS) + +noinst_LTLIBRARIES = libtegra.la + +libtegra_la_SOURCES = \ + $(C_SOURCES) + +libtegra_la_LIBADD = \ + $(LIBUDEV_LIBS) diff --git a/src/gallium/drivers/tegra/Makefile.sources b/src/gallium/drivers/tegra/Makefile.sources new file mode 100644 index 000000000000..978dd14667f5 --- /dev/null +++ b/src/gallium/drivers/tegra/Makefile.sources @@ -0,0 +1,4 @@ +C_SOURCES := \ + te...
2014 Nov 27
0
[Mesa-dev] [RFC] tegra: Initial support
...de Makefile.sources > +include $(top_srcdir)/src/gallium/Automake.inc > + > +AM_CFLAGS = \ > + $(GALLIUM_DRIVER_CFLAGS) \ > + $(LIBUDEV_CFLAGS) \ > + $(TEGRA_CFLAGS) > + > +noinst_LTLIBRARIES = libtegra.la > + > +libtegra_la_SOURCES = \ > + $(C_SOURCES) > + > +libtegra_la_LIBADD = \ > + $(LIBUDEV_LIBS) > diff --git a/src/gallium/drivers/tegra/Makefile.sources b/src/gallium/drivers/tegra/Makefile.sources > new file mode 100644 > index 000000000000..978dd14667f5 > --- /dev/null > +++ b/src/gallium/drivers/tegra/Makefil...
2010 Jan 18
0
[PATCH] nv04-nv40: Rewrite and unify miptree and transfer code
...- pipe_buffer_unmap(pscreen, mt->buffer); + nouveau_bo_unmap(mt->bo); } void diff --git a/src/gallium/drivers/nv10/Makefile b/src/gallium/drivers/nv10/Makefile index 62677f5..2b100c5 100644 --- a/src/gallium/drivers/nv10/Makefile +++ b/src/gallium/drivers/nv10/Makefile @@ -8,13 +8,11 @@ C_SOURCES = \ nv10_context.c \ nv10_fragprog.c \ nv10_fragtex.c \ - nv10_miptree.c \ nv10_prim_vbuf.c \ nv10_screen.c \ nv10_state.c \ nv10_state_emit.c \ nv10_surface.c \ - nv10_transfer.c \ nv10_vbo.c include ../../Makefile.template diff --git a/src/gallium/drivers/nv10/nv10_context.h...
2010 Jan 18
0
[PATCH] nv04-nv40: Rewrite and unify miptree and transfer code (v2)
...- pipe_buffer_unmap(pscreen, mt->buffer); + nouveau_bo_unmap(mt->bo); } void diff --git a/src/gallium/drivers/nv10/Makefile b/src/gallium/drivers/nv10/Makefile index 62677f5..2b100c5 100644 --- a/src/gallium/drivers/nv10/Makefile +++ b/src/gallium/drivers/nv10/Makefile @@ -8,13 +8,11 @@ C_SOURCES = \ nv10_context.c \ nv10_fragprog.c \ nv10_fragtex.c \ - nv10_miptree.c \ nv10_prim_vbuf.c \ nv10_screen.c \ nv10_state.c \ nv10_state_emit.c \ nv10_surface.c \ - nv10_transfer.c \ nv10_vbo.c include ../../Makefile.template diff --git a/src/gallium/drivers/nv10/nv10_context.h...
2009 Dec 31
1
[PATCH] Autogenerate uureg opcode macros
...ams/galliumut/gen_uureg_opcodes.sh diff --git a/src/gallium/programs/galliumut/Makefile b/src/gallium/programs/galliumut/Makefile index ab0d684..4cb9d7c 100644 --- a/src/gallium/programs/galliumut/Makefile +++ b/src/gallium/programs/galliumut/Makefile @@ -9,3 +9,8 @@ LIBRARY_DEFINES = --std=gnu99 C_SOURCES = egl_gallium.c image.c normal_gen.c include ../../Makefile.template + +default: uureg_opcodes.h + +uureg_opcodes.h: gen_uureg_opcodes.sh + bash $^ > $@ diff --git a/src/gallium/programs/galliumut/gen_uureg_opcodes.sh b/src/gallium/programs/galliumut/gen_uureg_opcodes.sh new file mode 100644...
2013 Aug 11
10
[PATCH 00/10] Add support for MPEG2 and VC-1 on VP3/VP4 for NV98-NVAF
As it turns out, with the proprietary firmware, the VP3 and VP4 interfaces are identical. Furthermore, this is all already implemented for nvc0. So these patches (a) move the easily sharable bits of the nvc0 implementation into the nouveau directory, and then (b) implement the other parts in nv50. The non-shared parts are still largely copies, but there are some differences, not the least of which
2013 Jun 30
0
[PATCH v2] nv50: H.264/MPEG2 decoding support via VP2, available on NV84-NV96, NVA0
...e mode 100644 src/gallium/drivers/nv50/nv84_video_vp.c diff --git a/src/gallium/drivers/nv50/Makefile.sources b/src/gallium/drivers/nv50/Makefile.sources index 1092570..0fdac51 100644 --- a/src/gallium/drivers/nv50/Makefile.sources +++ b/src/gallium/drivers/nv50/Makefile.sources @@ -13,7 +13,10 @@ C_SOURCES := \ nv50_program.c \ nv50_shader_state.c \ nv50_push.c \ - nv50_query.c + nv50_query.c \ + nv84_video.c \ + nv84_video_bsp.c \ + nv84_video_vp.c CODEGEN_NV50_SOURCES := \ codegen/nv50_ir.cpp \ diff --git a/src/gallium/drivers/nv50/nv50_context.c b/src/gallium/drivers/nv50/nv50_context.c...
2013 Jun 27
4
[PATCH] nv50: H.264/MPEG2 decoding support via VP2, available on NV84-NV96, NVA0
...e mode 100644 src/gallium/drivers/nv50/nv84_video_vp.c diff --git a/src/gallium/drivers/nv50/Makefile.sources b/src/gallium/drivers/nv50/Makefile.sources index 1092570..0fdac51 100644 --- a/src/gallium/drivers/nv50/Makefile.sources +++ b/src/gallium/drivers/nv50/Makefile.sources @@ -13,7 +13,10 @@ C_SOURCES := \ nv50_program.c \ nv50_shader_state.c \ nv50_push.c \ - nv50_query.c + nv50_query.c \ + nv84_video.c \ + nv84_video_bsp.c \ + nv84_video_vp.c CODEGEN_NV50_SOURCES := \ codegen/nv50_ir.cpp \ diff --git a/src/gallium/drivers/nv50/nv50_context.c b/src/gallium/drivers/nv50/nv50_context.c...
2015 Jun 22
12
[RFC PATCH 0/8] nv50: expose global performance counters
Hello there, This series exposes NVIDIA's global performance counters for Tesla through the Gallium's HUD and the GL_AMD_performance_monitor extension. This adds support for 24 hardware events which have been reverse engineered with PerfKit (Windows) and CUPTI (Linux). These hardware events will allow developers to profile OpenGL applications. To reduce latency and to improve accuracy,
2010 Aug 06
4
nv vpe video decoder
Hello, I have my work on the nv vpe video decoder in a functional state. In case you didn't know this decoder accelerates mpeg2 video at the idct/mc level. I have verified that it works on nv40 hardware. I believe it works on nv30 hardware (and maybe some earlier hardware), but I cannot verify since I have none. I will reply with patches against the kernel, drm, ddx and mesa for