efl/src/modules/evas/engines/gl_generic
Felipe Magno de Almeida a331384eed modules: Rename EAPI macro to MODAPI for modules
Summary:
Patch from a series of patches to rename EAPI symbols to specific
library DSOs.

=  The Rationale =

EAPI was designed to be able to pass
`__attribute__ ((visibility ("default")))` for symbols with
GCC, which would mean that even if -fvisibility=hidden was used
when compiling the library, the needed symbols would get exported.

MSVC __almost__ works like GCC (or mingw) in which you can
declare everything as export and it will just work (slower, but
it will work). But there's a caveat: global variables will not
work the same way for MSVC, but works for mingw and GCC.

For global variables (as opposed to functions), MSVC requires
correct DSO visibility for MSVC: instead of declaring a symbol as
export for everything, you need to declare it as import when
importing from another DSO and export when defining it locally.

With current EAPI definitions, we get the following example
working in mingw and MSVC (observe it doesn't define any global
variables as exported symbols).

Example 1:
dll1:
```
EAPI void foo(void);

EAPI void bar()
{
  foo();
}
```
dll2:
```
EAPI void foo()
{
  printf ("foo\n");
}
```

This works fine with API defined as __declspec(dllexport) in both
cases and for gcc defining as
`__atttribute__((visibility("default")))`.

However, the following:
Example 2:

dll1:

```
EAPI extern int foo;
EAPI void foobar(void);

EAPI void bar()
{
  foo = 5;
  foobar();
}
```

dll2:

```
EAPI int foo = 0;
EAPI void foobar()
{
  printf ("foo %d\n", foo);
}
```

This will work on mingw but will not work for MSVC. And that's why
EAPI is the only solution that worked for MSVC.

Co-authored-by: João Paulo Taylor Ienczak Zanette <jpaulotiz@gmail.com>
Co-authored-by: Ricardo Campos <ricardo.campos@expertise.dev>
Co-authored-by: Lucas Cavalcante de Sousa <lucks.sousa@gmail.com>

Reviewers: vtorri, jptiz, woohyun, lucas, SPAM-smith78899

Reviewed By: vtorri, SPAM-smith78899

Subscribers: SPAM-smith78899, raster, SPAM-cabanacatalogs, cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D12228
2021-04-17 16:07:56 -03:00
..
filters evas/filter: resolve float compare warnings 2020-05-12 16:10:02 +02:00
Evas_Engine_GL_Generic.h canvas 3d: remove all canvas3d features across efl. 2020-03-25 19:14:02 +09:00
Evas_Engine_GL_Shared.h evas: Render_Engine_Swap_Mode is actually about output swap. 2017-08-25 10:49:15 -07:00
evas_ector_gl.h modules: Rename EAPI macro to MODAPI for modules 2021-04-17 16:07:56 -03:00
evas_ector_gl_buffer.c eolian gen: enable constness generation on property getter impls 2018-04-17 20:31:55 +02:00
evas_ector_gl_buffer.eo eolian: enable checking of beta/stable contexts in all classes 2019-03-11 13:42:29 +01:00
evas_ector_gl_image_buffer.c eolian gen: enable constness generation on property getter impls 2018-04-17 20:31:55 +02:00
evas_ector_gl_image_buffer.eo eolian: enable checking of beta/stable contexts in all classes 2019-03-11 13:42:29 +01:00
evas_engine.c gl: remove memory leak of orient_set 2021-02-13 11:51:16 +00:00
meson.build modules: Rename EAPI macro to MODAPI for modules 2021-04-17 16:07:56 -03:00