mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 18:31:55 -04:00
54 lines
1.6 KiB
C++
54 lines
1.6 KiB
C++
// Filename: config_pnmtext.cxx
|
|
// Created by: drose (08Sep03)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
//
|
|
// All use of this software is subject to the terms of the revised BSD
|
|
// license. You should have received a copy of this license along
|
|
// with this source code in a file named "LICENSE."
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#include "config_pnmtext.h"
|
|
|
|
#include "dconfig.h"
|
|
#include "freetypeFace.h"
|
|
|
|
Configure(config_pnmtext);
|
|
NotifyCategoryDef(pnmtext, "");
|
|
|
|
ConfigureFn(config_pnmtext) {
|
|
init_libpnmtext();
|
|
}
|
|
|
|
ConfigVariableDouble text_point_size
|
|
("text-point-size", 10.0f);
|
|
ConfigVariableDouble text_pixels_per_unit
|
|
("text-pixels-per-unit", 40.0f);
|
|
ConfigVariableDouble text_scale_factor
|
|
("text-scale-factor", 2.0f);
|
|
ConfigVariableBool text_native_antialias
|
|
("text-native-antialias", true);
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: init_libpnmtext
|
|
// Description: Initializes the library. This must be called at
|
|
// least once before any of the functions or classes in
|
|
// this library can be used. Normally it will be
|
|
// called by the static initializers and need not be
|
|
// called explicitly, but special cases exist.
|
|
////////////////////////////////////////////////////////////////////
|
|
void
|
|
init_libpnmtext() {
|
|
static bool initialized = false;
|
|
if (initialized) {
|
|
return;
|
|
}
|
|
initialized = true;
|
|
|
|
FreetypeFace::init_type();
|
|
}
|