From: "Yordan Karadzhov (VMware)" <y.karadz@gmail.com>
To: rostedt@goodmis.org
Cc: linux-trace-devel@vger.kernel.org,
"Yordan Karadzhov (VMware)" <y.karadz@gmail.com>
Subject: [RFC PATCH v2 0/5] Add support for text rendering
Date: Wed, 3 Jul 2019 15:10:18 +0300 [thread overview]
Message-ID: <20190703121023.16655-1-y.karadz@gmail.com> (raw)
Implemented using the single-file public domain library "stb_truetype":
https://github.com/nothings/stb/blob/master/stb_truetype.h
PS: Patch 1/3 is a simple fix suggested by Slavomir which strictly
speaking is independent from the other two patches.
v2 changes:
- 2 new patches (patches 4/5 and 5/5).
- Added a procedure for finding a font file (patch 2/5).
- Addressed the comments made by Slavomir in his review of the previous
version.
Yordan Karadzhov (VMware) (5):
kernel-shark: Simplify the drawing of the Triangle Fan
kernel-shark: Add support for drawing text
kernel-shark: Add text rendering to the plotting example
kernel-shark: Add hello_kernel plugin
kernel-shark: Drop Freeglut as a compulsory dependency
kernel-shark/build/deff.h.cmake | 3 +
kernel-shark/doc/dox_config | 1 +
kernel-shark/examples/CMakeLists.txt | 14 +-
kernel-shark/examples/dataplot.cpp | 11 +
kernel-shark/examples/hello_kernel.c | 67 +
kernel-shark/src/CMakeLists.txt | 4 +-
kernel-shark/src/KsGLWidget.cpp | 4 -
kernel-shark/src/KsPlotTools.cpp | 4 -
kernel-shark/src/libkshark-plot.c | 239 +-
kernel-shark/src/libkshark-plot.h | 46 +
kernel-shark/src/libkshark-plugin.h | 3 +
kernel-shark/src/stb_truetype.h | 4882 ++++++++++++++++++++++++++
12 files changed, 5243 insertions(+), 35 deletions(-)
create mode 100644 kernel-shark/examples/hello_kernel.c
create mode 100644 kernel-shark/src/stb_truetype.h
--
2.20.1
next reply other threads:[~2019-07-03 12:10 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-07-03 12:10 Yordan Karadzhov (VMware) [this message]
2019-07-03 12:10 ` [RFC PATCH v2 1/5] kernel-shark: Simplify the drawing of the Triangle Fan Yordan Karadzhov (VMware)
2019-07-03 12:10 ` [RFC PATCH v2 2/5] kernel-shark: Add support for drawing text Yordan Karadzhov (VMware)
2019-07-03 12:10 ` [RFC PATCH v2 3/5] kernel-shark: Add text rendering to the plotting example Yordan Karadzhov (VMware)
2019-07-03 12:10 ` [RFC PATCH v2 4/5] kernel-shark: Add hello_kernel plugin Yordan Karadzhov (VMware)
2019-07-03 12:10 ` [RFC PATCH v2 5/5] kernel-shark: Drop Freeglut as a compulsory dependency Yordan Karadzhov (VMware)
2019-07-05 9:13 ` Slavomir Kaslev
2019-07-05 10:25 ` [RFC PATCH v2 0/5] Add support for text rendering Slavomir Kaslev
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190703121023.16655-1-y.karadz@gmail.com \
--to=y.karadz@gmail.com \
--cc=linux-trace-devel@vger.kernel.org \
--cc=rostedt@goodmis.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).