gl_context_mgr and gl_util belong in the gal folder

This commit is contained in:
Marek Roszko 2023-09-19 23:06:44 -04:00
parent fb12db5f2c
commit ee91b550d8
8 changed files with 39 additions and 7 deletions

View File

@ -23,7 +23,7 @@
*/
#include <gal/opengl/kiglew.h> // Must be included first
#include <gl_utils.h>
#include <gal/opengl/gl_utils.h>
#include <wx/tokenzr.h>
#include "../common_ogl/ogl_utils.h"
@ -35,7 +35,7 @@
#include <advanced_config.h>
#include <board.h>
#include <reporter.h>
#include <gl_context_mgr.h>
#include <gal/opengl/gl_context_mgr.h>
#include <core/profile.h> // To use GetRunningMicroSecs or another profiling utility
#include <bitmaps.h>
#include <macros.h>

View File

@ -35,7 +35,7 @@
#include "../3d_cache/3d_cache.h"
#include <wx/dcclient.h>
#include <base_units.h>
#include <gl_context_mgr.h>
#include <gal/opengl/gl_context_mgr.h>
#include <settings/common_settings.h>
#include <pgm_base.h>
#include <gal/dpi_scaling.h>

View File

@ -2,7 +2,6 @@
set( GAL_SRCS
# Common part
../callback_gal.cpp
../gl_context_mgr.cpp
painter.cpp
cursors.cpp
dpi_scaling.cpp
@ -20,6 +19,7 @@ set( GAL_SRCS
opengl/opengl_gal.cpp
opengl/gl_resources.cpp
opengl/gl_context_mgr.cpp
opengl/shader.cpp
opengl/vertex_item.cpp
opengl/vertex_container.cpp

View File

@ -23,7 +23,7 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <gl_context_mgr.h>
#include <gal/opengl/gl_context_mgr.h>
#include <wx/debug.h>

View File

@ -36,7 +36,7 @@
#include <gal/opengl/opengl_gal.h>
#include <gal/opengl/utils.h>
#include <gal/definitions.h>
#include <gl_context_mgr.h>
#include <gal/opengl/gl_context_mgr.h>
#include <geometry/shape_poly_set.h>
#include <math/vector2wx.h>
#include <bitmap_base.h>
@ -53,7 +53,7 @@
#include <core/profile.h>
#include <trace_helpers.h>
#include <gl_utils.h>
#include <gal/opengl/gl_utils.h>
#include <functional>
#include <limits>

32
include/gal/kigal.h Normal file
View File

@ -0,0 +1,32 @@
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2023 KiCad Developers, see AUTHORS.txt for contributors.
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your
* option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
#include <import_export.h>
#ifndef SWIG
#if defined( KIGAL_DLL )
#define KIGAL_API APIEXPORT
#else
#define KIGAL_API APIIMPORT
#endif
#else
#define GAL_API
#endif