Project
Loading...
Searching...
No Matches
GPUDisplayBackend.cxx
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11
14
15#include "GPUDisplayBackend.h"
17
19
20#ifdef GPUCA_BUILD_EVENT_DISPLAY_VULKAN
22#endif
23
24#ifdef GPUCA_BUILD_EVENT_DISPLAY_FREETYPE
25#include <ft2build.h>
26#include FT_FREETYPE_H
27#ifdef GPUCA_BUILD_EVENT_DISPLAY_FONTCONFIG
28#if !__has_include(<fontconfig/fontconfig.h>)
29#undef GPUCA_BUILD_EVENT_DISPLAY_FONTCONFIG
30#else
31#include <fontconfig/fontconfig.h>
32#endif
33#endif
34#endif
35
36#include "GPUDisplay.h"
37#include <string>
38
39using namespace o2::gpu;
40
43
45{
46#ifdef GPUCA_BUILD_EVENT_DISPLAY_VULKAN
47 if (strcmp(type, "vulkan") == 0 || strcmp(type, "auto") == 0) {
48 return new GPUDisplayBackendVulkan;
49 } else
50#endif
51 if (strcmp(type, "opengl") == 0 || strcmp(type, "auto") == 0) {
52 return new GPUDisplayBackendOpenGL;
53 } else {
54 GPUError("Requested renderer not available");
55 }
56 return nullptr;
57}
58
60{
61 int32_t retVal = InitBackendA();
62 if (retVal) {
63 return retVal;
64 }
65 if (mDisplay->cfg().noFreetype) {
66 return retVal;
67 }
68 std::string fontName = mDisplay->cfg().font;
69#ifdef GPUCA_BUILD_EVENT_DISPLAY_FONTCONFIG
70 FcInit();
71 FcConfig* config = FcInitLoadConfigAndFonts();
72 FcPattern* pat = FcNameParse((const FcChar8*)fontName.c_str());
73 FcConfigSubstitute(config, pat, FcMatchPattern);
74 FcDefaultSubstitute(pat);
75 FcResult result;
76 FcPattern* font = FcFontMatch(config, pat, &result);
77 if (font && result == 0) {
78 FcChar8* file = nullptr;
79 if (FcPatternGetString(font, FC_FILE, 0, &file) == FcResultMatch) {
80 fontName = (char*)file;
81 }
82 } else {
83 GPUError("Coult not find font for pattern %s", fontName.c_str());
84 }
85 FcPatternDestroy(font);
86 FcPatternDestroy(pat);
87 FcConfigDestroy(config);
88 FcFini();
89#endif // GPUCA_BUILD_EVENT_DISPLAY_FONTCONFIG
90
91#ifdef GPUCA_BUILD_EVENT_DISPLAY_FREETYPE
92 FT_Library ft;
93 FT_Face face;
94 if (FT_Init_FreeType(&ft)) {
95 GPUError("Error initializing freetype");
96 return 0;
97 }
98 if (FT_New_Face(ft, fontName.c_str(), 0, &face)) {
99 GPUError("Error loading freetypoe font");
100 return 0;
101 }
102
103 int32_t fontSize = mDisplay->cfg().fontSize;
105 if (smoothFont()) {
106 fontSize *= 4; // Font size scaled by 4, can be downsampled
107 }
108 FT_Set_Pixel_Sizes(face, 0, fontSize);
109
110 for (uint32_t i = 0; i < 128; i++) {
111 if (FT_Load_Char(face, i, FT_LOAD_RENDER)) {
112 GPUError("Error loading freetype symbol");
113 return 0;
114 }
115 const auto& glyph = face->glyph;
116 addFontSymbol(i, glyph->bitmap.width, glyph->bitmap.rows, glyph->bitmap_left, glyph->bitmap_top, glyph->advance.x, glyph->bitmap.buffer);
117 }
119 FT_Done_Face(face);
120 FT_Done_FreeType(ft);
122#endif // GPUCA_BUILD_EVENT_DISPLAY_FREETYPE
123 return retVal;
124}
125
130
132{
133 auto retVal = std::move(mScreenshotPixels);
134 mScreenshotPixels = std::vector<char>();
135 return retVal;
136}
137
139{
140 mCmdBuffer.clear();
142 // TODO: Check if this can be parallelized
143 for (int32_t iSector = 0; iSector < GPUCA_NSECTORS; iSector++) {
144 mIndirectSectorOffset[iSector] = mCmdBuffer.size();
145 for (uint32_t k = 0; k < mDisplay->vertexBufferStart()[iSector].size(); k++) {
146 mCmdBuffer.emplace_back(mDisplay->vertexBufferCount()[iSector][k], 1, mDisplay->vertexBufferStart()[iSector][k], 0);
147 }
148 }
149}
150
152{
153 float factor = 1.0f;
154 int32_t fsaa = mDisplay->cfgR().drawQualityDownsampleFSAA;
155 int32_t screenshotScale = mDisplay->cfgR().screenshotScaleFactor;
156 if (fsaa) {
157 factor *= fsaa;
158 }
159 if (screenshotScale && screenshot) {
160 factor *= screenshotScale;
161 }
162 return factor;
163}
164
166{
167 return mDisplay->cfg().smoothFont < 0 ? (mDisplay->cfg().fontSize > 12) : mDisplay->cfg().smoothFont;
168}
int32_t i
int32_t retVal
#define GPUCA_NSECTORS
virtual void addFontSymbol(int32_t symbol, int32_t sizex, int32_t sizey, int32_t offsetx, int32_t offsety, int32_t advance, void *data)=0
std::vector< char > getPixels()
vecpod< DrawArraysIndirectCommand > mCmdBuffer
std::vector< int32_t > mIndirectSectorOffset
static GPUDisplayBackend * getBackend(const char *type)
std::vector< char > mScreenshotPixels
virtual void ExitBackendA()=0
virtual void initializeTextDrawing()=0
virtual int32_t InitBackendA()=0
float getDownsampleFactor(bool screenshot=false)
const GPUSettingsDisplayRenderer & cfgR() const
Definition GPUDisplay.h:59
int32_t & drawTextFontSize()
Definition GPUDisplay.h:77
const vecpod< uint32_t > * vertexBufferCount() const
Definition GPUDisplay.h:68
const GPUSettingsDisplay & cfg() const
Definition GPUDisplay.h:62
vecpod< int32_t > * vertexBufferStart()
Definition GPUDisplay.h:67
GLuint64EXT * result
Definition glcorearb.h:5662
GLsizeiptr size
Definition glcorearb.h:659
GLenum GLuint GLint GLenum face
Definition glcorearb.h:3184
GLint GLint GLsizei GLint GLenum GLenum type
Definition glcorearb.h:275
GLenum GLsizeiptr fontSize
Definition glcorearb.h:5519
GLenum const void * fontName
Definition glcorearb.h:5473