|
@@ -60,14 +60,14 @@ public:
|
|
|
/// @param[in] clone The layer to optionally clone geometry and texture data from.
|
|
/// @param[in] clone The layer to optionally clone geometry and texture data from.
|
|
|
/// @param[in] deep_clone If true, the clones geometry will be completely cloned and the effect will have no option to affect even the glyph origins.
|
|
/// @param[in] deep_clone If true, the clones geometry will be completely cloned and the effect will have no option to affect even the glyph origins.
|
|
|
/// @return True if the layer was generated successfully, false if not.
|
|
/// @return True if the layer was generated successfully, false if not.
|
|
|
- virtual bool Initialise(const FontFaceHandle* handle, FontEffect* effect = NULL, const Rocket::Core::FontFaceLayer* clone = NULL, bool deep_clone = false);
|
|
|
|
|
|
|
+ virtual bool Initialise(const Rocket::Core::FontFaceHandle* handle, FontEffect* effect = NULL, const Rocket::Core::FontFaceLayer* clone = NULL, bool deep_clone = false) override;
|
|
|
|
|
|
|
|
/// Generates the texture data for a layer (for the texture database).
|
|
/// Generates the texture data for a layer (for the texture database).
|
|
|
/// @param[out] texture_data The pointer to be set to the generated texture data.
|
|
/// @param[out] texture_data The pointer to be set to the generated texture data.
|
|
|
/// @param[out] texture_dimensions The dimensions of the texture.
|
|
/// @param[out] texture_dimensions The dimensions of the texture.
|
|
|
/// @param[in] glyphs The glyphs required by the font face handle.
|
|
/// @param[in] glyphs The glyphs required by the font face handle.
|
|
|
/// @param[in] texture_id The index of the texture within the layer to generate.
|
|
/// @param[in] texture_id The index of the texture within the layer to generate.
|
|
|
- virtual bool GenerateTexture(const byte*& texture_data, Vector2i& texture_dimensions, int texture_id);
|
|
|
|
|
|
|
+ virtual bool GenerateTexture(const byte*& texture_data, Vector2i& texture_dimensions, int texture_id) override;
|
|
|
|
|
|
|
|
};
|
|
};
|
|
|
|
|
|