microvg  3.0.1
microvg
LLVG_BVI_stub.c
Go to the documentation of this file.
1 /*
2  * C
3  *
4  * Copyright 2023 MicroEJ Corp. All rights reserved.
5  * Use of this source code is governed by a BSD-style license that can be found with this software.
6  */
7 
16 #include "microvg_configuration.h"
17 
18 #ifndef VG_FEATURE_BUFFERED_VECTOR_IMAGE
19 
20 // -----------------------------------------------------------------------------
21 // Includes
22 // -----------------------------------------------------------------------------
23 
24 #include <LLVG_BVI_impl.h>
25 
26 // -----------------------------------------------------------------------------
27 // LLVG_BVI_impl.h functions
28 // -----------------------------------------------------------------------------
29 
30 // See the header file for the function documentation
31 void LLVG_BVI_IMPL_map_context(MICROUI_Image* ui, void* vg) {
32  (void)ui;
33  (void)vg;
34  // nothing to do
35 }
36 
37 // See the header file for the function documentation
38 void LLVG_BVI_IMPL_clear(MICROUI_GraphicsContext* gc) {
39  (void)gc;
40  // nothing to do
41 }
42 
43 // -----------------------------------------------------------------------------
44 // EOF
45 // -----------------------------------------------------------------------------
46 
47 #endif // VG_FEATURE_BUFFERED_VECTOR_IMAGE
MicroEJ MicroVG library low level API: enable some features according to the hardware capacities...