mirror of
https://github.com/wichtounet/thor-os.git
synced 2025-09-08 11:58:36 -04:00
Move Liberation to tlib
This commit is contained in:
parent
b2730f20b6
commit
3a7989fb2e
@ -35,7 +35,7 @@ size_t red_shift;
|
||||
size_t blue_shift;
|
||||
size_t green_shift;
|
||||
|
||||
#include "Liberation.c"
|
||||
#include <tlib/Liberation.inl>
|
||||
|
||||
} //end of anonymous namespace
|
||||
|
||||
|
@ -1 +0,0 @@
|
||||
../../../kernel/src/Liberation.c
|
@ -23,7 +23,7 @@ uint64_t red_shift = 0;
|
||||
uint64_t green_shift = 0;
|
||||
uint64_t blue_shift = 0;
|
||||
|
||||
#include "Liberation.c"
|
||||
#include <tlib/Liberation.inl>
|
||||
|
||||
uint32_t make_color(uint8_t r, uint8_t g, uint8_t b){
|
||||
return (r << red_shift) + (g << green_shift) + (b << blue_shift);
|
||||
|
@ -2,6 +2,7 @@ sonar.projectKey=thor
|
||||
sonar.projectName=thor
|
||||
sonar.projectVersion=1.2.3
|
||||
|
||||
sonar.cxx.suffixes.headers=.hpp,.inl
|
||||
sonar.sources=programs,tlib,tstl,kernel/include,kernel/src,init
|
||||
sonar.language=c++
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user