KiCad PCB EDA Suite
|
OpenGL implementation of the Graphics Abstraction Layer. More...
#include <opengl_gal.h>
Classes | |
struct | TessParams |
Public Member Functions | |
OPENGL_GAL (const KIGFX::VC_SETTINGS &aVcSettings, GAL_DISPLAY_OPTIONS &aDisplayOptions, wxWindow *aParent, wxEvtHandler *aMouseListener=nullptr, wxEvtHandler *aPaintListener=nullptr, const wxString &aName=wxT("GLCanvas")) | |
~OPENGL_GAL () | |
bool | IsOpenGlEngine () override |
Return true if the GAL engine is a OpenGL based type. | |
bool | IsInitialized () const override |
Return the initialization status for the canvas. | |
bool | IsVisible () const override |
Return true if the GAL canvas is visible on the screen. | |
void | SetMinLineWidth (float aLineWidth) override |
Set the minimum line width in pixels. | |
void | DrawLine (const VECTOR2D &aStartPoint, const VECTOR2D &aEndPoint) override |
Draw a line. | |
void | DrawSegment (const VECTOR2D &aStartPoint, const VECTOR2D &aEndPoint, double aWidth) override |
Draw a rounded segment. | |
void | DrawSegmentChain (const std::vector< VECTOR2D > &aPointList, double aWidth) override |
Draw a chain of rounded segments. | |
void | DrawSegmentChain (const SHAPE_LINE_CHAIN &aLineChain, double aWidth) override |
void | DrawCircle (const VECTOR2D &aCenterPoint, double aRadius) override |
Draw a circle using world coordinates. | |
void | DrawHoleWall (const VECTOR2D &aCenterPoint, double aHoleRadius, double aWallWidth) override |
Draw a hole wall ring. | |
void | DrawArc (const VECTOR2D &aCenterPoint, double aRadius, const EDA_ANGLE &aStartAngle, const EDA_ANGLE &aAngle) override |
Draw an arc. | |
void | DrawArcSegment (const VECTOR2D &aCenterPoint, double aRadius, const EDA_ANGLE &aStartAngle, const EDA_ANGLE &aAngle, double aWidth, double aMaxError) override |
Draw an arc segment. | |
void | DrawRectangle (const VECTOR2D &aStartPoint, const VECTOR2D &aEndPoint) override |
Draw a rectangle. | |
void | DrawPolyline (const std::deque< VECTOR2D > &aPointList) override |
Draw a polyline. | |
void | DrawPolyline (const std::vector< VECTOR2D > &aPointList) override |
void | DrawPolyline (const VECTOR2D aPointList[], int aListSize) override |
void | DrawPolyline (const SHAPE_LINE_CHAIN &aLineChain) override |
void | DrawPolylines (const std::vector< std::vector< VECTOR2D > > &aPointLists) override |
Draw multiple polylines. | |
void | DrawPolygon (const std::deque< VECTOR2D > &aPointList) override |
Draw a polygon. | |
void | DrawPolygon (const VECTOR2D aPointList[], int aListSize) override |
void | DrawPolygon (const SHAPE_POLY_SET &aPolySet, bool aStrokeTriangulation=false) override |
void | DrawPolygon (const SHAPE_LINE_CHAIN &aPolySet) override |
virtual void | DrawGlyph (const KIFONT::GLYPH &aGlyph, int aNth, int aTotal) override |
Draw a polygon representing a font glyph. | |
virtual void | DrawGlyphs (const std::vector< std::unique_ptr< KIFONT::GLYPH > > &aGlyphs) override |
Draw polygons representing font glyphs. | |
void | DrawCurve (const VECTOR2D &startPoint, const VECTOR2D &controlPointA, const VECTOR2D &controlPointB, const VECTOR2D &endPoint, double aFilterValue=0.0) override |
Draw a cubic bezier spline. | |
void | DrawBitmap (const BITMAP_BASE &aBitmap, double alphaBlend=1.0) override |
Draw a bitmap image. | |
void | BitmapText (const wxString &aText, const VECTOR2I &aPosition, const EDA_ANGLE &aAngle) override |
Draw a text using a bitmap font. | |
void | DrawGrid () override |
void | ResizeScreen (int aWidth, int aHeight) override |
Resizes the canvas. | |
bool | Show (bool aShow) override |
Shows/hides the GAL canvas. | |
int | GetSwapInterval () const override |
Return the swap interval. -1 for adaptive, 0 for disabled/unknown. | |
void | Flush () override |
Force all remaining objects to be drawn. | |
void | ClearScreen () override |
Clear the screen. | |
void | Transform (const MATRIX3x3D &aTransformation) override |
Transform the context. | |
void | Rotate (double aAngle) override |
Rotate the context. | |
void | Translate (const VECTOR2D &aTranslation) override |
Translate the context. | |
void | Scale (const VECTOR2D &aScale) override |
Scale the context. | |
void | Save () override |
Save the context. | |
void | Restore () override |
Restore the context. | |
int | BeginGroup () override |
Begin a group. | |
void | EndGroup () override |
End the group. | |
void | DrawGroup (int aGroupNumber) override |
Draw the stored group. | |
void | ChangeGroupColor (int aGroupNumber, const COLOR4D &aNewColor) override |
Change the color used to draw the group. | |
void | ChangeGroupDepth (int aGroupNumber, int aDepth) override |
Change the depth (Z-axis position) of the group. | |
void | DeleteGroup (int aGroupNumber) override |
Delete the group from the memory. | |
void | ClearCache () override |
Delete all data created during caching of graphic items. | |
void | SetTarget (RENDER_TARGET aTarget) override |
Set the target for rendering. | |
RENDER_TARGET | GetTarget () const override |
Get the currently used target for rendering. | |
void | ClearTarget (RENDER_TARGET aTarget) override |
Clear the target for rendering. | |
virtual bool | HasTarget (RENDER_TARGET aTarget) override |
Return true if the target exists. | |
void | SetNegativeDrawMode (bool aSetting) override |
Set negative draw mode in the renderer. | |
void | StartDiffLayer () override |
Begins rendering of a differential layer. | |
void | EndDiffLayer () override |
Ends rendering of a differential layer. | |
void | ComputeWorldScreenMatrix () override |
Compute the world <-> screen transformation matrix. | |
bool | SetNativeCursorStyle (KICURSOR aCursor, bool aHiDPI) override |
Set the cursor in the native panel. | |
void | DrawCursor (const VECTOR2D &aCursorPosition) override |
Draw the cursor. | |
void | PostPaint (wxPaintEvent &aEvent) |
Post an event to #m_paint_listener. | |
void | SetMouseListener (wxEvtHandler *aMouseListener) |
void | SetPaintListener (wxEvtHandler *aPaintListener) |
void | EnableDepthTest (bool aEnabled=false) override |
bool | IsContextLocked () override |
Checks the state of the context lock. | |
void | LockContext (int aClientCookie) override |
Use GAL_CONTEXT_LOCKER RAII object unless you know what you're doing. | |
void | UnlockContext (int aClientCookie) override |
void | BeginDrawing () override |
Start/end drawing functions, draw calls can be only made in between the calls to BeginDrawing()/EndDrawing(). | |
void | EndDrawing () override |
End the drawing, needs to be called for every new frame. | |
virtual bool | IsCairoEngine () |
Return true if the GAL engine is a Cairo based type. | |
void | DrawRectangle (const BOX2I &aRect) |
const VECTOR2I & | GetScreenPixelSize () const |
Return GAL canvas size in pixels. | |
void | SetClearColor (const COLOR4D &aColor) |
const COLOR4D & | GetClearColor () const |
virtual void | SetIsFill (bool aIsFillEnabled) |
Enable/disable fill. | |
bool | GetIsFill () const |
Get the fill status. | |
virtual void | SetIsStroke (bool aIsStrokeEnabled) |
Enable/disable stroked outlines. | |
bool | GetIsStroke () const |
Get the stroke status. | |
virtual void | SetFillColor (const COLOR4D &aColor) |
Set the fill color. | |
const COLOR4D & | GetFillColor () const |
Get the fill color. | |
virtual void | SetStrokeColor (const COLOR4D &aColor) |
Set the stroke color. | |
const COLOR4D & | GetStrokeColor () const |
Get the stroke color. | |
virtual void | SetLineWidth (float aLineWidth) |
Set the line width. | |
float | GetLineWidth () const |
Get the line width. | |
float | GetMinLineWidth () const |
Get the minimum line width in pixels. | |
virtual void | SetLayerDepth (double aLayerDepth) |
Set the depth of the layer (position on the z-axis) | |
void | AdvanceDepth () |
Change the current depth to deeper, so it is possible to draw objects right beneath other. | |
void | ResetTextAttributes () |
Reset text attributes to default styling. | |
void | SetGlyphSize (const VECTOR2I aSize) |
const VECTOR2I & | GetGlyphSize () const |
void | SetFontBold (const bool aBold) |
bool | IsFontBold () const |
void | SetFontItalic (bool aItalic) |
bool | IsFontItalic () const |
void | SetFontUnderlined (bool aUnderlined) |
bool | IsFontUnderlined () const |
void | SetTextMirrored (const bool aMirrored) |
bool | IsTextMirrored () const |
void | SetHorizontalJustify (const GR_TEXT_H_ALIGN_T aHorizontalJustify) |
GR_TEXT_H_ALIGN_T | GetHorizontalJustify () const |
void | SetVerticalJustify (const GR_TEXT_V_ALIGN_T aVerticalJustify) |
GR_TEXT_V_ALIGN_T | GetVerticalJustify () const |
const MATRIX3x3D & | GetWorldScreenMatrix () const |
Get the world <-> screen transformation matrix. | |
const MATRIX3x3D & | GetScreenWorldMatrix () const |
Get the screen <-> world transformation matrix. | |
void | SetWorldScreenMatrix (const MATRIX3x3D &aMatrix) |
Set the world <-> screen transformation matrix. | |
BOX2D | GetVisibleWorldExtents () const |
void | SetWorldUnitLength (double aWorldUnitLength) |
Set the unit length. | |
void | SetScreenSize (const VECTOR2I &aSize) |
void | SetScreenDPI (double aScreenDPI) |
Set the dots per inch of the screen. | |
double | GetScreenDPI () const |
void | SetLookAtPoint (const VECTOR2D &aPoint) |
Get/set the Point in world space to look at. | |
const VECTOR2D & | GetLookAtPoint () const |
void | SetZoomFactor (double aZoomFactor) |
double | GetZoomFactor () const |
void | SetRotation (double aRotation) |
Get/set the rotation angle (in radians). | |
double | GetRotation () const |
void | SetDepthRange (const VECTOR2D &aDepthRange) |
Set the range of the layer depth. | |
double | GetMinDepth () const |
double | GetMaxDepth () const |
double | GetWorldScale () const |
Get the world scale. | |
void | SetFlip (bool xAxis, bool yAxis) |
Sets flipping of the screen. | |
bool | IsFlippedX () const |
bool | IsFlippedY () const |
virtual void | StartNegativesLayer () |
Begins rendering in a new layer that will be copied to the main layer in EndNegativesLayer(). | |
virtual void | EndNegativesLayer () |
Ends rendering of a negatives layer and draws it to the main layer. | |
void | SetGridVisibility (bool aVisibility) |
Set the visibility setting of the grid. | |
bool | GetGridVisibility () const |
bool | GetGridSnapping () const |
void | SetGridOrigin (const VECTOR2D &aGridOrigin) |
Set the origin point for the grid. | |
const VECTOR2D & | GetGridOrigin () const |
void | SetGridSize (const VECTOR2D &aGridSize) |
Set the grid size. | |
const VECTOR2D & | GetGridSize () const |
Return the grid size. | |
VECTOR2D | GetVisibleGridSize () const |
Return the visible grid size in x and y directions. | |
void | SetGridColor (const COLOR4D &aGridColor) |
Set the grid color. | |
void | SetAxesColor (const COLOR4D &aAxesColor) |
Set the axes color. | |
void | SetAxesEnabled (bool aAxesEnabled) |
Enable drawing the axes. | |
void | SetCoarseGrid (int aInterval) |
Draw every tick line wider. | |
float | GetGridLineWidth () const |
Get the grid line width. | |
VECTOR2D | GetGridPoint (const VECTOR2D &aPoint) const |
For a given point it returns the nearest point belonging to the grid in world coordinates. | |
VECTOR2D | ToWorld (const VECTOR2D &aPoint) const |
Compute the point position in world coordinates from given screen coordinates. | |
VECTOR2D | ToScreen (const VECTOR2D &aPoint) const |
Compute the point position in screen coordinates from given world coordinates. | |
void | SetCursorEnabled (bool aCursorEnabled) |
Enable/disable cursor. | |
bool | IsCursorEnabled () const |
Return information about cursor visibility. | |
void | SetCursorColor (const COLOR4D &aCursorColor) |
Set the cursor color. | |
virtual wxSize | GetNativePixelSize () const |
wxPoint | GetNativePosition (const wxPoint &aPoint) const |
Convert the given point from client coordinates to native pixel coordinates. | |
double | GetScaleFactor () const |
Get the current scale factor. | |
void | SetVcSettings (const KIGFX::VC_SETTINGS &aVcSettings) |
Static Public Member Functions | |
static wxString | CheckFeatures (GAL_DISPLAY_OPTIONS &aOptions) |
Checks OpenGL features. | |
Protected Member Functions | |
void | computeWorldScale () |
Compute the scaling factor for the world->screen matrix. | |
double | computeMinGridSpacing () const |
Compute minimum grid spacing from the grid settings. | |
COLOR4D | getCursorColor () const |
Get the actual cursor color to draw. | |
void | OnGalDisplayOptionsChanged (const GAL_DISPLAY_OPTIONS &aOptions) override |
Handler for observer settings changes. | |
template<typename T> | |
void | normalize (T &a, T &b) |
Ensure that the first element is smaller than the second. | |
Protected Attributes | |
GAL_DISPLAY_OPTIONS & | m_options |
UTIL::LINK | m_observerLink |
std::stack< double > | m_depthStack |
Stored depth values. | |
VECTOR2I | m_screenSize |
Screen size in screen (wx logical) coordinates. | |
double | m_worldUnitLength |
The unit length of the world coordinates [inch]. | |
double | m_screenDPI |
The dots per inch of the screen. | |
VECTOR2D | m_lookAtPoint |
Point to be looked at in world space. | |
double | m_zoomFactor |
The zoom factor. | |
double | m_rotation |
Rotation transformation (radians) | |
MATRIX3x3D | m_worldScreenMatrix |
World transformation. | |
MATRIX3x3D | m_screenWorldMatrix |
Screen transformation. | |
double | m_worldScale |
The scale factor world->screen. | |
bool | m_globalFlipX |
Flag for X axis flipping. | |
bool | m_globalFlipY |
Flag for Y axis flipping. | |
float | m_lineWidth |
The line width. | |
float | m_minLineWidth |
Minimum line width in pixels. | |
bool | m_isFillEnabled |
Is filling of graphic objects enabled ? | |
bool | m_isStrokeEnabled |
Are the outlines stroked ? | |
COLOR4D | m_fillColor |
The fill color. | |
COLOR4D | m_strokeColor |
The color of the outlines. | |
COLOR4D | m_clearColor |
double | m_layerDepth |
The actual layer depth. | |
VECTOR2D | m_depthRange |
Range of the depth. | |
bool | m_gridVisibility |
Should the grid be shown. | |
GRID_STYLE | m_gridStyle |
Grid display style. | |
VECTOR2D | m_gridSize |
The grid size. | |
VECTOR2D | m_gridOrigin |
The grid origin. | |
VECTOR2D | m_gridOffset |
The grid offset to compensate cursor position. | |
COLOR4D | m_gridColor |
Color of the grid. | |
COLOR4D | m_axesColor |
Color of the axes. | |
bool | m_axesEnabled |
Should the axes be drawn. | |
int | m_gridTick |
Every tick line gets the double width. | |
float | m_gridLineWidth |
Line width of the grid. | |
int | m_gridMinSpacing |
Minimum screen size of the grid (pixels) below which the grid is not drawn. | |
bool | m_isCursorEnabled |
Is the cursor enabled? | |
bool | m_forceDisplayCursor |
Always show cursor. | |
COLOR4D | m_cursorColor |
Cursor color. | |
KIGFX::CROSS_HAIR_MODE | m_crossHairMode |
Crosshair drawing mode. | |
VECTOR2D | m_cursorPosition |
Current cursor position (world coordinates) | |
KICURSOR | m_currentNativeCursor |
Current cursor. | |
KIGFX::VC_SETTINGS | m_settings |
< Current VIEW_CONTROLS settings. | |
Static Protected Attributes | |
static const int | MIN_DEPTH = -2*MAX_LAYERS_FOR_VIEW |
Possible depth range. | |
static const int | MAX_DEPTH = 2*MAX_LAYERS_FOR_VIEW - 1 |
static const int | GRID_DEPTH = MAX_DEPTH - 1 |
Depth level on which the grid is drawn. | |
Private Types | |
typedef GAL | super |
Super class definition. | |
typedef std::unordered_map< unsigned int, std::shared_ptr< VERTEX_ITEM > > | GROUPS_MAP |
Private Member Functions | |
void | beginUpdate () override |
void | endUpdate () override |
bool | updatedGalDisplayOptions (const GAL_DISPLAY_OPTIONS &aOptions) override |
Handle updating display options. | |
void | drawLineQuad (const VECTOR2D &aStartPoint, const VECTOR2D &aEndPoint, bool aReserve=true) |
Draw a quad for the line. | |
void | reserveLineQuads (const int aLineCount) |
Reserve specified number of line quads. | |
void | drawSemiCircle (const VECTOR2D &aCenterPoint, double aRadius, double aAngle) |
Draw a semicircle. | |
void | drawFilledSemiCircle (const VECTOR2D &aCenterPoint, double aRadius, double aAngle) |
Draw a filled semicircle. | |
void | drawStrokedSemiCircle (const VECTOR2D &aCenterPoint, double aRadius, double aAngle, bool aReserve=true) |
Draw a stroked semicircle. | |
void | drawCircle (const VECTOR2D &aCenterPoint, double aRadius, bool aReserve=true) |
Internal method for circle drawing. | |
void | drawPolyline (const std::function< VECTOR2D(int)> &aPointGetter, int aPointCount, bool aReserve=true) |
Generic way of drawing a polyline stored in different containers. | |
void | drawSegmentChain (const std::function< VECTOR2D(int)> &aPointGetter, int aPointCount, double aWidth, bool aReserve=true) |
Generic way of drawing a chain of segments stored in different containers. | |
void | drawSegment (const VECTOR2D &aStartPoint, const VECTOR2D &aEndPoint, double aWidth, bool aReserve=true) |
Internal method for segment drawing. | |
void | drawPolygon (GLdouble *aPoints, int aPointCount) |
Draw a filled polygon. | |
void | drawTriangulatedPolyset (const SHAPE_POLY_SET &aPoly, bool aStrokeTriangulation) |
Draw a set of polygons with a cached triangulation. | |
int | drawBitmapChar (unsigned long aChar, bool aReserve=true) |
Draw a single character using bitmap font. | |
void | drawBitmapOverbar (double aLength, double aHeight, bool aReserve=true) |
Draw an overbar over the currently drawn text. | |
std::pair< VECTOR2D, float > | computeBitmapTextSize (const UTF8 &aText) const |
Compute a size of text drawn using bitmap font with current text setting applied. | |
void | onPaint (wxPaintEvent &aEvent) |
This is the OnPaint event handler. | |
void | skipMouseEvent (wxMouseEvent &aEvent) |
Skip the mouse event to the parent. | |
void | skipGestureEvent (wxGestureEvent &aEvent) |
Skip the gesture event to the parent. | |
void | onSetNativeCursor (wxSetCursorEvent &aEvent) |
Give the correct cursor image when the native widget asks for it. | |
void | blitCursor () |
Blit cursor into the current screen. | |
unsigned int | getNewGroupNumber () |
Return a valid key that can be used as a new group number. | |
double | calcAngleStep (double aRadius) const |
Compute the angle step when drawing arcs/circles approximated with lines. | |
double | getWorldPixelSize () const |
VECTOR2D | getScreenPixelSize () const |
void | setupShaderParameters () |
Set up the shader parameters for OpenGL rendering. | |
void | init () |
Basic OpenGL initialization and feature checks. | |
double | getLayerDepth () const |
Private Attributes | |
wxGLContext * | m_glPrivContext |
Canvas-specific OpenGL context. | |
int | m_swapInterval |
Used to store swap interval information. | |
wxEvtHandler * | m_mouseListener |
wxEvtHandler * | m_paintListener |
GROUPS_MAP | m_groups |
Stores information about VBO objects (groups) | |
unsigned int | m_groupCounter |
Counter used for generating keys for groups. | |
VERTEX_MANAGER * | m_currentManager |
Currently used VERTEX_MANAGER (for storing VERTEX_ITEMs). | |
VERTEX_MANAGER * | m_cachedManager |
Container for storing cached VERTEX_ITEMs. | |
VERTEX_MANAGER * | m_nonCachedManager |
Container for storing non-cached VERTEX_ITEMs. | |
VERTEX_MANAGER * | m_overlayManager |
Container for storing overlaid VERTEX_ITEMs. | |
VERTEX_MANAGER * | m_tempManager |
Container for storing temp (diff mode) VERTEX_ITEMs. | |
OPENGL_COMPOSITOR * | m_compositor |
Handles multiple rendering targets. | |
unsigned int | m_mainBuffer |
Main rendering target. | |
unsigned int | m_overlayBuffer |
Auxiliary rendering target (for menus etc.) | |
unsigned int | m_tempBuffer |
Temporary rendering target (for diffing etc.) | |
RENDER_TARGET | m_currentTarget |
Current rendering target. | |
SHADER * | m_shader |
There is only one shader used for different objects. | |
bool | m_isFramebufferInitialized |
Are the framebuffers initialized? | |
bool | m_isBitmapFontInitialized |
Is the shader set to use bitmap fonts? | |
bool | m_isInitialized |
Basic initialization flag, has to be done when the window is visible. | |
bool | m_isGrouping |
Was a group started? | |
bool | m_isContextLocked |
Used for assertion checking. | |
int | m_lockClientCookie |
GLint | ufm_worldPixelSize |
GLint | ufm_screenPixelSize |
GLint | ufm_pixelSizeMultiplier |
GLint | ufm_antialiasingOffset |
GLint | ufm_minLinePixelWidth |
GLint | ufm_fontTexture |
GLint | ufm_fontTextureWidth |
WX_CURSOR_TYPE | m_currentwxCursor |
wx cursor showing the current native cursor. | |
std::unique_ptr< GL_BITMAP_CACHE > | m_bitmapCache |
GLUtesselator * | m_tesselator |
std::deque< std::shared_ptr< GLdouble > > | m_tessIntersects |
TEXT_ATTRIBUTES | m_attributes |
Static Private Attributes | |
static wxGLContext * | m_glMainContext = nullptr |
Parent OpenGL context. | |
static int | m_instanceCounter = 0 |
GL GAL instance counter. | |
static GLuint | g_fontTexture = 0 |
Bitmap font texture handle (shared) | |
static bool | m_isBitmapFontLoaded = false |
Is the bitmap font texture loaded? | |
OpenGL implementation of the Graphics Abstraction Layer.
This is a direct OpenGL-implementation and uses low-level graphics primitives like triangles and quads. The purpose is to provide a fast graphics interface, that takes advantage of modern graphics card GPUs. All methods here benefit thus from the hardware acceleration.
Definition at line 70 of file opengl_gal.h.
|
private |
Definition at line 349 of file opengl_gal.h.
|
private |
Super class definition.
Definition at line 337 of file opengl_gal.h.
OPENGL_GAL::OPENGL_GAL | ( | const KIGFX::VC_SETTINGS & | aVcSettings, |
GAL_DISPLAY_OPTIONS & | aDisplayOptions, | ||
wxWindow * | aParent, | ||
wxEvtHandler * | aMouseListener = nullptr, | ||
wxEvtHandler * | aPaintListener = nullptr, | ||
const wxString & | aName = wxT( "GLCanvas" ) ) |
aParent | is the wxWidgets immediate wxWindow parent of this object. |
aMouseListener | is the wxEvtHandler that should receive the mouse events, this can be can be any wxWindow, but is often a wxFrame container. |
aPaintListener | is the wxEvtHandler that should receive the paint event. This can be any wxWindow, but is often a derived instance of this class or a containing wxFrame. The "paint event" here is a wxCommandEvent holding EVT_GAL_REDRAW, as sent by PostPaint(). |
aName | is the name of this window for use by wxWindow::FindWindowByName() |
Definition at line 307 of file opengl_gal.cpp.
References BLUE, GL_CONTEXT_MANAGER::CreateCtx(), KIGFX::GAL::GAL(), getGLAttribs(), PGM_BASE::GetGLContextManager(), HIDPI_GL_CANVAS::GetNativePixelSize(), HIDPI_GL_CANVAS::HIDPI_GL_CANVAS(), InitTesselatorCallbacks(), m_bitmapCache, m_cachedManager, m_compositor, m_currentManager, m_glMainContext, m_glPrivContext, m_groupCounter, m_instanceCounter, m_isBitmapFontInitialized, m_isContextLocked, m_isFramebufferInitialized, m_isGrouping, m_isInitialized, m_lockClientCookie, m_mainBuffer, m_mouseListener, m_nonCachedManager, KIGFX::GAL::m_options, m_overlayBuffer, m_overlayManager, m_paintListener, KIGFX::GAL::m_screenSize, m_shader, m_swapInterval, m_tempBuffer, m_tempManager, m_tesselator, onPaint(), onSetNativeCursor(), Pgm(), KIGFX::GAL::SetAxesColor(), KIGFX::GAL::SetGridColor(), SetTarget(), skipGestureEvent(), skipMouseEvent(), KIGFX::TARGET_NONCACHED, ToVECTOR2I(), ufm_antialiasingOffset, ufm_fontTexture, ufm_fontTextureWidth, ufm_minLinePixelWidth, ufm_pixelSizeMultiplier, ufm_screenPixelSize, and ufm_worldPixelSize.
OPENGL_GAL::~OPENGL_GAL | ( | ) |
Definition at line 421 of file opengl_gal.cpp.
References ClearCache(), GL_CONTEXT_MANAGER::DestroyCtx(), g_fontTexture, PGM_BASE::GetGLContextManager(), GL_CONTEXT_MANAGER::LockCtx(), m_cachedManager, m_compositor, m_glMainContext, m_glPrivContext, m_instanceCounter, m_isBitmapFontLoaded, m_isInitialized, m_nonCachedManager, m_overlayManager, m_shader, m_tempManager, m_tesselator, Pgm(), and GL_CONTEXT_MANAGER::UnlockCtx().
|
inlineinherited |
Change the current depth to deeper, so it is possible to draw objects right beneath other.
If you do this, you should consider using a GAL_SCOPED_ATTR to ensure the depth is reset to the original value.
Definition at line 439 of file graphics_abstraction_layer.h.
References m_layerDepth, and SetLayerDepth().
Referenced by KIGFX::VIEW_GROUP::ViewDraw().
|
overridevirtual |
Start/end drawing functions, draw calls can be only made in between the calls to BeginDrawing()/EndDrawing().
Normally you should create a GAL_DRAWING_CONTEXT RAII object, but I'm leaving these functions public for more precise (i.e. timing/profiling) control of the drawing process - Tom Begin the drawing, needs to be called for every new frame. Use GAL_DRAWING_CONTEXT RAII object unless you know what you're doing.
Reimplemented from KIGFX::GAL.
Definition at line 548 of file opengl_gal.cpp.
References checkGlError(), ComputeWorldScreenMatrix(), KIGFX::OPENGL_COMPOSITOR::DIRECT_RENDERING, KIGFX::BUILTIN_FONT::font_image, g_fontTexture, KIGFX::GAL::GetMinLineWidth(), HIDPI_GL_CANVAS::GetScaleFactor(), getScreenPixelSize(), getWorldPixelSize(), init(), IsVisible(), m_cachedManager, m_compositor, KIGFX::GAL::m_depthRange, KIGFX::GAL::m_fillColor, m_isBitmapFontInitialized, m_isBitmapFontLoaded, m_isContextLocked, m_isFramebufferInitialized, m_isInitialized, m_mainBuffer, m_nonCachedManager, m_overlayBuffer, m_overlayManager, KIGFX::GAL::m_screenSize, m_shader, KIGFX::GAL::m_strokeColor, m_tempBuffer, m_tempManager, KIGFX::GAL::m_worldScreenMatrix, PROF_TIMER::msecs(), KIGFX::GAL::SetFillColor(), KIGFX::GAL::SetStrokeColor(), PROF_TIMER::Stop(), traceGalProfile, ufm_antialiasingOffset, ufm_fontTexture, ufm_fontTextureWidth, ufm_minLinePixelWidth, ufm_pixelSizeMultiplier, ufm_screenPixelSize, ufm_worldPixelSize, VECTOR2< T >::x, and VECTOR2< T >::y.
|
overridevirtual |
Begin a group.
A group is a collection of graphic items. Hierarchical groups are possible, attributes and transformations can be used.
Reimplemented from KIGFX::GAL.
Definition at line 2014 of file opengl_gal.cpp.
References getNewGroupNumber(), m_cachedManager, m_groups, and m_isGrouping.
|
overrideprivatevirtual |
Reimplemented from KIGFX::GAL.
Definition at line 807 of file opengl_gal.cpp.
References init(), IsVisible(), m_cachedManager, m_isContextLocked, and m_isInitialized.
|
overridevirtual |
Draw a text using a bitmap font.
It should be faster than StrokeText(), but can be used only for non-Gerber elements.
aText | is the text to be drawn. |
aPosition | is the text position in world coordinates. |
aAngle | is the text rotation angle. |
Reimplemented from KIGFX::GAL.
Definition at line 1609 of file opengl_gal.cpp.
References EDA_ANGLE::AsRadians(), KIGFX::GAL::BitmapText(), computeBitmapTextSize(), drawBitmapChar(), drawBitmapOverbar(), end, KIGFX::GAL::GetGlyphSize(), KIGFX::GAL::GetHorizontalJustify(), KIGFX::GAL::GetVerticalJustify(), GR_TEXT_H_ALIGN_CENTER, GR_TEXT_H_ALIGN_INDETERMINATE, GR_TEXT_H_ALIGN_LEFT, GR_TEXT_H_ALIGN_RIGHT, GR_TEXT_V_ALIGN_BOTTOM, GR_TEXT_V_ALIGN_CENTER, GR_TEXT_V_ALIGN_INDETERMINATE, GR_TEXT_V_ALIGN_TOP, KIGFX::GAL::IsTextMirrored(), m_currentManager, KIGFX::GAL::m_globalFlipX, KIGFX::GAL::m_globalFlipY, KIGFX::GAL::m_layerDepth, KIGFX::GAL::m_strokeColor, Restore(), Save(), text, Translate(), VECTOR2< T >::x, and VECTOR2< T >::y.
|
private |
Blit cursor into the current screen.
Definition at line 2667 of file opengl_gal.cpp.
References color, KIGFX::OPENGL_COMPOSITOR::DIRECT_RENDERING, KIGFX::FULLSCREEN_CROSS, KIGFX::FULLSCREEN_DIAGONAL, KIGFX::GAL::getCursorColor(), KIGFX::GAL::IsCursorEnabled(), m_compositor, KIGFX::GAL::m_crossHairMode, KIGFX::GAL::m_cursorPosition, KIGFX::GAL::m_screenSize, KIGFX::GAL::m_screenWorldMatrix, KIGFX::GAL::m_worldScale, KIGFX::SMALL_CROSS, VECTOR2< T >::x, and VECTOR2< T >::y.
Referenced by EndDrawing().
|
inlineprivate |
Compute the angle step when drawing arcs/circles approximated with lines.
Definition at line 588 of file opengl_gal.h.
References M_PI, and SEG_PER_CIRCLE_COUNT.
Referenced by DrawArc().
|
overridevirtual |
Change the color used to draw the group.
aGroupNumber | is the group number. |
aNewColor | is the new color. |
Reimplemented from KIGFX::GAL.
Definition at line 2042 of file opengl_gal.cpp.
References group, m_cachedManager, and m_groups.
|
overridevirtual |
Change the depth (Z-axis position) of the group.
aGroupNumber | is the group number. |
aDepth | is the new depth. |
Reimplemented from KIGFX::GAL.
Definition at line 2051 of file opengl_gal.cpp.
References group, m_cachedManager, and m_groups.
|
static |
Checks OpenGL features.
aOptions |
Definition at line 469 of file opengl_gal.cpp.
References dummy, KIGFX::GAL::GAL_CONTEXT_LOCKER, and init().
Referenced by EDA_DRAW_PANEL_GAL::SwitchBackend().
|
overridevirtual |
Delete all data created during caching of graphic items.
Reimplemented from KIGFX::GAL.
Definition at line 2067 of file opengl_gal.cpp.
References m_bitmapCache, m_cachedManager, m_groups, and m_isInitialized.
Referenced by ~OPENGL_GAL().
|
overridevirtual |
Clear the screen.
aColor | is the color used for clearing. |
Reimplemented from KIGFX::GAL.
Definition at line 1955 of file opengl_gal.cpp.
References KIGFX::OPENGL_COMPOSITOR::DIRECT_RENDERING, and m_compositor.
|
overridevirtual |
Clear the target for rendering.
aTarget | is the target to be cleared. |
Reimplemented from KIGFX::GAL.
Definition at line 2099 of file opengl_gal.cpp.
References KIGFX::COLOR4D::BLACK, KIGFX::GAL::m_clearColor, m_compositor, m_mainBuffer, m_overlayBuffer, m_tempBuffer, KIGFX::TARGET_CACHED, KIGFX::TARGET_NONCACHED, KIGFX::TARGET_OVERLAY, and KIGFX::TARGET_TEMP.
Referenced by StartDiffLayer().
Compute a size of text drawn using bitmap font with current text setting applied.
aText | is the text to be drawn. |
Definition at line 2585 of file opengl_gal.cpp.
References KIGFX::BUILTIN_FONT::FONT_GLYPH_TYPE::advance, end, KIGFX::BUILTIN_FONT::font_information, KIGFX::BUILTIN_FONT::LookupGlyph(), KIGFX::BUILTIN_FONT::FONT_GLYPH_TYPE::maxy, KIGFX::BUILTIN_FONT::FONT_GLYPH_TYPE::miny, UTF8::ubegin(), UTF8::uend(), VECTOR2< T >::x, and VECTOR2< T >::y.
Referenced by BitmapText().
|
protectedinherited |
Compute minimum grid spacing from the grid settings.
Definition at line 218 of file graphics_abstraction_layer.cpp.
References m_gridMinSpacing.
Referenced by KIGFX::CAIRO_GAL_BASE::DrawGrid(), and GetVisibleGridSize().
|
inlineprotectedinherited |
Compute the scaling factor for the world->screen matrix.
Definition at line 1044 of file graphics_abstraction_layer.h.
References PGM_BASE::GetCommonSettings(), COMMON_SETTINGS::m_Appearance, m_screenDPI, m_worldScale, m_worldUnitLength, m_zoomFactor, Pgm(), and COMMON_SETTINGS::APPEARANCE::zoom_correction_factor.
Referenced by ComputeWorldScreenMatrix(), KIGFX::OPENGL_GAL::ComputeWorldScreenMatrix(), and GAL().
|
overridevirtual |
Compute the world <-> screen transformation matrix.
Reimplemented from KIGFX::GAL.
Definition at line 2947 of file opengl_gal.cpp.
References KIGFX::GAL::computeWorldScale(), KIGFX::GAL::ComputeWorldScreenMatrix(), KIGFX::GAL::m_lookAtPoint, KIGFX::GAL::m_worldScale, and round_to_half_pixel().
Referenced by BeginDrawing().
|
overridevirtual |
Delete the group from the memory.
aGroupNumber | is the group number. |
Reimplemented from KIGFX::GAL.
Definition at line 2060 of file opengl_gal.cpp.
References m_groups.
|
overridevirtual |
Draw an arc.
aCenterPoint | is the center point of the arc. |
aRadius | is the arc radius. |
aStartAngle | is the start angle of the arc. |
aAngle | is the angle of the arc. |
Reimplemented from KIGFX::GAL.
Definition at line 993 of file opengl_gal.cpp.
References EDA_ANGLE::AsRadians(), calcAngleStep(), drawLineQuad(), m_currentManager, KIGFX::GAL::m_fillColor, KIGFX::GAL::m_isFillEnabled, KIGFX::GAL::m_isStrokeEnabled, KIGFX::GAL::m_layerDepth, KIGFX::GAL::m_strokeColor, KIGFX::GAL::normalize(), reserveLineQuads(), Restore(), Save(), KIGFX::SHADER_NONE, VECTOR2< T >::x, and VECTOR2< T >::y.
|
overridevirtual |
Draw an arc segment.
This method differs from DrawArc() in what happens when fill/stroke are on or off. DrawArc() draws a "pie piece" when fill is turned on, and a thick stroke when fill is off. DrawArcSegment() with fill on behaves like DrawArc() with fill off. DrawArcSegment() with fill off draws the outline of what it would have drawn with fill on.
This has meaning only for back ends that can't draw a true arc, and use segments to approximate.
TODO: Unify Arc routines
aCenterPoint | is the center point of the arc. |
aRadius | is the arc radius. |
aStartAngle | is the start angle of the arc. |
aAngle | is the angle of the arc. |
aWidth | is the thickness of the arc (pen size). |
aMaxError | is the max allowed error to create segments to approximate a circle. |
Reimplemented from KIGFX::GAL.
Definition at line 1074 of file opengl_gal.cpp.
References EDA_ANGLE::AsRadians(), DrawCircle(), DrawLine(), drawLineQuad(), DrawSegment(), drawStrokedSemiCircle(), FULL_CIRCLE, GetArcToSegmentCount(), KiROUND(), m_currentManager, KIGFX::GAL::m_fillColor, KIGFX::GAL::m_isFillEnabled, KIGFX::GAL::m_isStrokeEnabled, M_PI, KIGFX::GAL::m_strokeColor, KIGFX::GAL::normalize(), reserveLineQuads(), Restore(), Save(), SEG_PER_CIRCLE_COUNT, KIGFX::GAL::SetLineWidth(), VECTOR2< T >::x, and VECTOR2< T >::y.
|
overridevirtual |
Draw a bitmap image.
Reimplemented from KIGFX::GAL.
Definition at line 1531 of file opengl_gal.cpp.
References EDA_ANGLE::AsDegrees(), BITMAP_BASE::GetPPI(), BITMAP_BASE::GetSizePixels(), BITMAP_BASE::IsMirroredX(), BITMAP_BASE::IsMirroredY(), m_bitmapCache, m_currentManager, KIGFX::GAL::m_layerDepth, KIGFX::GAL::m_worldUnitLength, BITMAP_BASE::Rotation(), scale, v1, VECTOR2< T >::x, and VECTOR2< T >::y.
|
private |
Draw a single character using bitmap font.
Its main purpose is to be used in BitmapText() function.
aChar | is the character to be drawn. |
aReserve | if set to false, reserve 6 vertices for each character. |
Definition at line 2475 of file opengl_gal.cpp.
References KIGFX::BUILTIN_FONT::FONT_GLYPH_TYPE::advance, KIGFX::BUILTIN_FONT::FONT_GLYPH_TYPE::atlas_h, KIGFX::BUILTIN_FONT::FONT_GLYPH_TYPE::atlas_w, KIGFX::BUILTIN_FONT::FONT_GLYPH_TYPE::atlas_x, KIGFX::BUILTIN_FONT::FONT_GLYPH_TYPE::atlas_y, KIGFX::BUILTIN_FONT::font_image, KIGFX::BUILTIN_FONT::font_information, H, KiROUND(), KIGFX::BUILTIN_FONT::LookupGlyph(), m_currentManager, KIGFX::BUILTIN_FONT::FONT_GLYPH_TYPE::maxy, KIGFX::BUILTIN_FONT::FONT_GLYPH_TYPE::minx, KIGFX::BUILTIN_FONT::FONT_GLYPH_TYPE::miny, KIGFX::SHADER_FONT, and Translate().
Referenced by BitmapText().
|
private |
Draw an overbar over the currently drawn text.
Its main purpose is to be used in BitmapText() function. This method requires appropriate scaling to be applied (as is done in BitmapText() function). The current X coordinate will be the overbar ending.
aLength | is the width of the overbar. |
aHeight | is the height for the overbar. |
aReserve | if set to false, reserve 6 vertices for each overbar. |
Definition at line 2554 of file opengl_gal.cpp.
References H, KIGFX::BUILTIN_FONT::LookupGlyph(), m_currentManager, KIGFX::GAL::m_strokeColor, KIGFX::BUILTIN_FONT::FONT_GLYPH_TYPE::maxy, KIGFX::BUILTIN_FONT::FONT_GLYPH_TYPE::miny, Restore(), Save(), and Translate().
Referenced by BitmapText().
|
overridevirtual |
Draw a circle using world coordinates.
aCenterPoint | is the center point of the circle. |
aRadius | is the radius of the circle. |
Reimplemented from KIGFX::GAL.
Definition at line 906 of file opengl_gal.cpp.
References drawCircle().
Referenced by DrawArcSegment().
|
private |
Internal method for circle drawing.
aReserve | if set to false, reserve 3 vertices for each circle. |
Definition at line 931 of file opengl_gal.cpp.
References m_currentManager, KIGFX::GAL::m_fillColor, KIGFX::GAL::m_isFillEnabled, KIGFX::GAL::m_isStrokeEnabled, KIGFX::GAL::m_layerDepth, KIGFX::GAL::m_lineWidth, KIGFX::GAL::m_strokeColor, KIGFX::SHADER_FILLED_CIRCLE, KIGFX::SHADER_STROKED_CIRCLE, VECTOR2< T >::x, and VECTOR2< T >::y.
Referenced by DrawCircle(), and drawSegment().
|
overridevirtual |
Draw the cursor.
aCursorPosition | is the cursor position in screen coordinates. |
Reimplemented from KIGFX::GAL.
Definition at line 2207 of file opengl_gal.cpp.
References KIGFX::GAL::m_cursorPosition.
|
overridevirtual |
Draw a cubic bezier spline.
startPoint | is the start point of the spline. |
controlPointA | is the first control point. |
controlPointB | is the second control point. |
endPoint | is the end point of the spline. |
aFilterValue | is used by Bezier to segments approximation, if the Bezier curve is not supported and needs a curve to polyline conversion. aFilterValue = 0 means no filtering. |
Reimplemented from KIGFX::GAL.
Definition at line 1509 of file opengl_gal.cpp.
References DrawPolygon(), and BEZIER_POLY::GetPoly().
|
private |
Draw a filled semicircle.
aCenterPoint | is the center point. |
aRadius | is the radius of the semicircle. |
aAngle | is the angle of the semicircle. |
Definition at line 2289 of file opengl_gal.cpp.
References m_currentManager, KIGFX::GAL::m_layerDepth, Restore(), Save(), KIGFX::SHADER_FILLED_CIRCLE, VECTOR2< T >::x, and VECTOR2< T >::y.
Referenced by drawSemiCircle().
|
overridevirtual |
Draw a polygon representing a font glyph.
Reimplemented from KIGFX::GAL.
Definition at line 2961 of file opengl_gal.cpp.
References DrawPolylines(), KIFONT::GLYPH::IsOutline(), KIFONT::GLYPH::IsStroke(), m_currentManager, KIGFX::GAL::m_fillColor, KIGFX::GAL::m_layerDepth, KIGFX::SHADER_NONE, VECTOR2< T >::x, and VECTOR2< T >::y.
Referenced by DrawGlyphs().
|
overridevirtual |
Draw polygons representing font glyphs.
Reimplemented from KIGFX::GAL.
Definition at line 2989 of file opengl_gal.cpp.
References DrawGlyph(), drawPolyline(), SHAPE_POLY_SET::TRIANGULATED_POLYGON::GetTriangle(), SHAPE_POLY_SET::TRIANGULATED_POLYGON::GetTriangleCount(), m_currentManager, KIGFX::GAL::m_fillColor, KIGFX::GAL::m_layerDepth, reserveLineQuads(), KIGFX::SHADER_NONE, VECTOR2< T >::x, and VECTOR2< T >::y.
|
overridevirtual |
Reimplemented from KIGFX::GAL.
Definition at line 1778 of file opengl_gal.cpp.
References KIGFX::DOTS, DrawLine(), KIGFX::GAL::GetLineWidth(), HIDPI_GL_CANVAS::GetScaleFactor(), KIGFX::GAL::GetVisibleGridSize(), getWorldPixelSize(), KiROUND(), KIGFX::GAL::m_axesColor, KIGFX::GAL::m_axesEnabled, m_compositor, KIGFX::GAL::m_gridColor, KIGFX::GAL::m_gridLineWidth, KIGFX::GAL::m_gridOrigin, KIGFX::GAL::m_gridSize, KIGFX::GAL::m_gridStyle, KIGFX::GAL::m_gridTick, KIGFX::GAL::m_gridVisibility, m_mainBuffer, m_nonCachedManager, KIGFX::GAL::m_screenSize, KIGFX::GAL::m_screenWorldMatrix, KIGFX::GAL::normalize(), KIGFX::GAL::SetLineWidth(), KIGFX::GAL::SetStrokeColor(), SetTarget(), KIGFX::SMALL_CROSS, KIGFX::TARGET_NONCACHED, VECTOR2< T >::x, and VECTOR2< T >::y.
|
overridevirtual |
Draw the stored group.
aGroupNumber | is the group number. |
Reimplemented from KIGFX::GAL.
Definition at line 2033 of file opengl_gal.cpp.
References group, m_cachedManager, and m_groups.
|
overridevirtual |
Draw a hole wall ring.
aCenterPoint | is the center point of the hole. |
aHoleRadius | is the radius of the hole. |
aWallWidth | is the wall thickness. |
Reimplemented from KIGFX::GAL.
Definition at line 912 of file opengl_gal.cpp.
References m_currentManager, KIGFX::GAL::m_fillColor, KIGFX::GAL::m_isFillEnabled, KIGFX::GAL::m_layerDepth, KIGFX::SHADER_HOLE_WALL, VECTOR2< T >::x, and VECTOR2< T >::y.
|
overridevirtual |
Draw a line.
Start and end points are defined as 2D-Vectors.
aStartPoint | is the start point of the line. |
aEndPoint | is the end point of the line. |
Reimplemented from KIGFX::GAL.
Definition at line 832 of file opengl_gal.cpp.
References drawLineQuad(), m_currentManager, and KIGFX::GAL::m_strokeColor.
Referenced by DrawArcSegment(), DrawGrid(), DrawRectangle(), and drawTriangulatedPolyset().
|
private |
Draw a quad for the line.
aStartPoint | is the start point of the line. |
aEndPoint | is the end point of the line. |
aReserve | if set to false, call reserveLineQuads beforehand to reserve the right amount of vertices. |
Definition at line 2217 of file opengl_gal.cpp.
References m_currentManager, KIGFX::GAL::m_layerDepth, KIGFX::GAL::m_lineWidth, reserveLineQuads(), KIGFX::SHADER_LINE_A, KIGFX::SHADER_LINE_B, KIGFX::SHADER_LINE_C, KIGFX::SHADER_LINE_D, KIGFX::SHADER_LINE_E, KIGFX::SHADER_LINE_F, v1, v2, VECTOR2< T >::x, and VECTOR2< T >::y.
Referenced by DrawArc(), DrawArcSegment(), DrawLine(), drawPolyline(), and drawSegment().
|
overridevirtual |
Reimplemented from KIGFX::GAL.
Definition at line 1488 of file opengl_gal.cpp.
References SHAPE_LINE_CHAIN::CPoint(), drawPolygon(), KIGFX::GAL::m_layerDepth, SHAPE_LINE_CHAIN::PointCount(), SHAPE_LINE_CHAIN::SegmentCount(), VECTOR2< T >::x, and VECTOR2< T >::y.
|
overridevirtual |
Reimplemented from KIGFX::GAL.
Definition at line 1472 of file opengl_gal.cpp.
References SHAPE_POLY_SET::COutline(), DrawPolygon(), drawTriangulatedPolyset(), SHAPE_POLY_SET::IsTriangulationUpToDate(), and SHAPE_POLY_SET::OutlineCount().
|
overridevirtual |
Draw a polygon.
aPointList | is the list of the polygon points. |
Reimplemented from KIGFX::GAL.
Definition at line 1361 of file opengl_gal.cpp.
References drawPolygon(), and KIGFX::GAL::m_layerDepth.
Referenced by DrawCurve(), and DrawPolygon().
|
overridevirtual |
Reimplemented from KIGFX::GAL.
Definition at line 1378 of file opengl_gal.cpp.
References drawPolygon(), KIGFX::GAL::m_layerDepth, VECTOR2< T >::x, and VECTOR2< T >::y.
|
private |
Draw a filled polygon.
It does not need the last point to have the same coordinates as the first one.
aPoints | is the vertices data (3 coordinates: x, y, z). |
aPointCount | is the number of points. |
Definition at line 2355 of file opengl_gal.cpp.
References drawPolyline(), m_currentManager, KIGFX::GAL::m_fillColor, KIGFX::GAL::m_isFillEnabled, KIGFX::GAL::m_isStrokeEnabled, m_tesselator, m_tessIntersects, and KIGFX::SHADER_NONE.
Referenced by DrawPolygon(), DrawPolygon(), and DrawPolygon().
|
overridevirtual |
Reimplemented from KIGFX::GAL.
Definition at line 1324 of file opengl_gal.cpp.
References SHAPE_LINE_CHAIN::CPoint(), drawPolyline(), SHAPE_LINE_CHAIN::IsClosed(), and SHAPE_LINE_CHAIN::PointCount().
|
overridevirtual |
Draw a polyline.
aPointList | is a list of 2D-Vectors containing the polyline points. |
Reimplemented from KIGFX::GAL.
Definition at line 1291 of file opengl_gal.cpp.
References drawPolyline().
Referenced by DrawRectangle(), and drawTriangulatedPolyset().
|
overridevirtual |
Reimplemented from KIGFX::GAL.
Definition at line 1302 of file opengl_gal.cpp.
References drawPolyline().
|
overridevirtual |
Reimplemented from KIGFX::GAL.
Definition at line 1313 of file opengl_gal.cpp.
References drawPolyline().
|
private |
Generic way of drawing a polyline stored in different containers.
aPointGetter | is a function to obtain coordinates of n-th vertex. |
aPointCount | is the number of points to be drawn. |
aReserve | if set to false, reserve aPointCount - 1 line quads. |
Definition at line 2395 of file opengl_gal.cpp.
References drawLineQuad(), end, m_currentManager, KIGFX::GAL::m_strokeColor, and reserveLineQuads().
Referenced by DrawGlyphs(), drawPolygon(), DrawPolyline(), DrawPolyline(), DrawPolyline(), DrawPolyline(), and DrawPolylines().
|
overridevirtual |
Draw multiple polylines.
aPointLists | are lists of 2D-Vectors containing the polyline points. |
Reimplemented from KIGFX::GAL.
Definition at line 1340 of file opengl_gal.cpp.
References drawPolyline(), and reserveLineQuads().
Referenced by DrawGlyph().
|
inlineinherited |
Definition at line 200 of file graphics_abstraction_layer.h.
References DrawRectangle(), BOX2< Vec >::GetEnd(), and BOX2< Vec >::GetOrigin().
|
overridevirtual |
Draw a rectangle.
aStartPoint | is the start point of the rectangle. |
aEndPoint | is the end point of the rectangle. |
Reimplemented from KIGFX::GAL.
Definition at line 1215 of file opengl_gal.cpp.
References DrawLine(), DrawPolyline(), m_currentManager, KIGFX::GAL::m_fillColor, KIGFX::GAL::m_isFillEnabled, KIGFX::GAL::m_isStrokeEnabled, KIGFX::GAL::m_layerDepth, KIGFX::GAL::m_strokeColor, KIGFX::SHADER_NONE, VECTOR2< T >::x, and VECTOR2< T >::y.
|
overridevirtual |
Draw a rounded segment.
Start and end points are defined as 2D-Vectors.
aStartPoint | is the start point of the segment. |
aEndPoint | is the end point of the segment. |
aWidth | is a width of the segment |
Reimplemented from KIGFX::GAL.
Definition at line 840 of file opengl_gal.cpp.
References drawSegment().
Referenced by DrawArcSegment().
|
private |
Internal method for segment drawing.
Definition at line 847 of file opengl_gal.cpp.
References EDA_ANGLE::AsRadians(), drawCircle(), drawLineQuad(), drawStrokedSemiCircle(), VECTOR2< T >::EuclideanNorm(), m_currentManager, KIGFX::GAL::m_fillColor, KIGFX::GAL::m_isFillEnabled, M_PI, KIGFX::GAL::m_strokeColor, Restore(), Save(), KIGFX::GAL::SetLineWidth(), VECTOR2< T >::x, and VECTOR2< T >::y.
Referenced by DrawSegment(), and drawSegmentChain().
|
overridevirtual |
Reimplemented from KIGFX::GAL.
Definition at line 1275 of file opengl_gal.cpp.
References SHAPE_LINE_CHAIN::CPoint(), drawSegmentChain(), SHAPE_LINE_CHAIN::IsClosed(), and SHAPE_LINE_CHAIN::PointCount().
|
overridevirtual |
Draw a chain of rounded segments.
aPointList | is a list of 2D-Vectors containing the chain points. |
aWidth | is a width of the segments |
Reimplemented from KIGFX::GAL.
Definition at line 1264 of file opengl_gal.cpp.
References drawSegmentChain().
|
private |
Generic way of drawing a chain of segments stored in different containers.
aPointGetter | is a function to obtain coordinates of n-th vertex. |
aPointCount | is the number of points to be drawn. |
aReserve | if set to false, do not reserve vertices internally. |
Definition at line 2423 of file opengl_gal.cpp.
References drawSegment(), end, m_currentManager, KIGFX::GAL::m_isFillEnabled, and KIGFX::GAL::m_strokeColor.
Referenced by DrawSegmentChain(), and DrawSegmentChain().
|
private |
Draw a semicircle.
Depending on settings (m_isStrokeEnabled & isFilledEnabled) it runs the proper function (drawStrokedSemiCircle or drawFilledSemiCircle).
aCenterPoint | is the center point. |
aRadius | is the radius of the semicircle. |
aAngle | is the angle of the semicircle. |
Definition at line 2272 of file opengl_gal.cpp.
References drawFilledSemiCircle(), drawStrokedSemiCircle(), m_currentManager, KIGFX::GAL::m_fillColor, KIGFX::GAL::m_isFillEnabled, KIGFX::GAL::m_isStrokeEnabled, and KIGFX::GAL::m_strokeColor.
|
private |
Draw a stroked semicircle.
aCenterPoint | is the center point. |
aRadius | is the radius of the semicircle. |
aAngle | is the angle of the semicircle. |
aReserve | if set to false, reserve 3 vertices for each semicircle. |
Definition at line 2319 of file opengl_gal.cpp.
References m_currentManager, KIGFX::GAL::m_layerDepth, KIGFX::GAL::m_lineWidth, Restore(), Save(), KIGFX::SHADER_STROKED_CIRCLE, VECTOR2< T >::x, and VECTOR2< T >::y.
Referenced by DrawArcSegment(), drawSegment(), and drawSemiCircle().
|
private |
Draw a set of polygons with a cached triangulation.
Way faster than drawPolygon.
aStrokeTriangulation | indicates the triangulation should be stroked rather than filled. Used for debugging. |
Definition at line 1397 of file opengl_gal.cpp.
References DrawLine(), DrawPolyline(), KIGFX::GAL::GAL_SCOPED_ATTRS, ADVANCED_CFG::GetCfg(), SHAPE_POLY_SET::TRIANGULATED_POLYGON::GetTriangleCount(), KIGFX::GAL_SCOPED_ATTRS::LAYER_DEPTH, m_currentManager, KIGFX::GAL::m_fillColor, KIGFX::GAL::m_isFillEnabled, KIGFX::GAL::m_isStrokeEnabled, KIGFX::GAL::m_layerDepth, SHAPE_POLY_SET::OutlineCount(), SHAPE_POLY_SET::Polygon(), KIGFX::GAL::SetLayerDepth(), KIGFX::GAL::SetStrokeColor(), KIGFX::SHADER_NONE, KIGFX::GAL_SCOPED_ATTRS::STROKE_COLOR, SHAPE_POLY_SET::TriangulatedPolyCount(), SHAPE_POLY_SET::TriangulatedPolygon(), VECTOR2< T >::x, and VECTOR2< T >::y.
Referenced by DrawPolygon().
|
overridevirtual |
Reimplemented from KIGFX::GAL.
Definition at line 2933 of file opengl_gal.cpp.
References m_cachedManager, m_nonCachedManager, and m_overlayManager.
|
overridevirtual |
Ends rendering of a differential layer.
Objects drawn after the StartDiffLayer() will be drawn and composited with a differential blend mode, then drawing is returned to normal.
Reimplemented from KIGFX::GAL.
Definition at line 2159 of file opengl_gal.cpp.
References m_compositor, m_currentManager, m_mainBuffer, and m_tempBuffer.
|
overridevirtual |
End the drawing, needs to be called for every new frame.
Use GAL_DRAWING_CONTEXT RAII object unless you know what you're doing. Parameters passed to the GLU tesselator
Reimplemented from KIGFX::GAL.
Definition at line 722 of file opengl_gal.cpp.
References blitCursor(), KI_TRACE, m_cachedManager, m_compositor, m_isContextLocked, m_mainBuffer, m_nonCachedManager, m_overlayBuffer, m_overlayManager, PROF_TIMER::Start(), PROF_TIMER::Stop(), PROF_TIMER::to_string(), and traceGalProfile.
|
overridevirtual |
End the group.
Reimplemented from KIGFX::GAL.
Definition at line 2026 of file opengl_gal.cpp.
References m_cachedManager, and m_isGrouping.
|
inlinevirtualinherited |
Ends rendering of a negatives layer and draws it to the main layer.
No-op in OpenGL.
Reimplemented in KIGFX::CAIRO_GAL.
Definition at line 778 of file graphics_abstraction_layer.h.
|
overrideprivatevirtual |
Update handler for OpenGL settings
Reimplemented from KIGFX::GAL.
Definition at line 823 of file opengl_gal.cpp.
References m_cachedManager, and m_isInitialized.
|
overridevirtual |
Force all remaining objects to be drawn.
Reimplemented from KIGFX::GAL.
Definition at line 1949 of file opengl_gal.cpp.
|
inlineinherited |
Definition at line 278 of file graphics_abstraction_layer.h.
References m_clearColor.
Referenced by EDIT_POINTS::ViewDraw().
|
protectedinherited |
Get the actual cursor color to draw.
Definition at line 258 of file graphics_abstraction_layer.cpp.
References color, m_cursorColor, and m_isCursorEnabled.
Referenced by KIGFX::CAIRO_GAL_BASE::blitCursor(), and KIGFX::OPENGL_GAL::blitCursor().
|
inlineinherited |
Get the fill color.
Definition at line 349 of file graphics_abstraction_layer.h.
References m_fillColor.
Referenced by KIGFX::GAL_SCOPED_ATTRS::GAL_SCOPED_ATTRS().
|
inlineinherited |
Definition at line 468 of file graphics_abstraction_layer.h.
References m_attributes.
Referenced by KIGFX::OPENGL_GAL::BitmapText(), and KIGFX::PREVIEW::ANGLE_ITEM::drawPreviewShape().
|
inlineinherited |
Get the grid line width.
Definition at line 920 of file graphics_abstraction_layer.h.
References m_gridLineWidth.
|
inlineinherited |
Definition at line 819 of file graphics_abstraction_layer.h.
References m_gridOrigin.
For a given point it returns the nearest point belonging to the grid in world coordinates.
aPoint | is the point for which the grid point is searched. |
Definition at line 226 of file graphics_abstraction_layer.cpp.
References KiROUND(), m_gridOffset, m_gridSize, VECTOR2< T >::x, and VECTOR2< T >::y.
Referenced by KIGFX::WX_VIEW_CONTROLS::GetRawCursorPosition().
|
inlineinherited |
Return the grid size.
Definition at line 846 of file graphics_abstraction_layer.h.
References m_gridSize.
Referenced by COMMON_TOOLS::CursorControl(), GERBVIEW_FRAME::DisplayGridMsg(), EDA_DRAW_FRAME::GetNearestGridPosition(), EDA_DRAW_FRAME::GetNearestHalfGridPosition(), and COMMON_TOOLS::PanControl().
|
inlineinherited |
Definition at line 793 of file graphics_abstraction_layer.h.
References KIGFX::ALWAYS, m_gridVisibility, m_options, and KIGFX::WITH_GRID.
Referenced by KIGFX::WX_VIEW_CONTROLS::GetRawCursorPosition(), ROUTER_TOOL::InlineBreakTrack(), ROUTER_TOOL::InlineDrag(), PNS::TOOL_BASE::updateEndItem(), and PNS::TOOL_BASE::updateStartItem().
|
inlineinherited |
Definition at line 791 of file graphics_abstraction_layer.h.
References m_gridVisibility.
|
inlineinherited |
Definition at line 487 of file graphics_abstraction_layer.h.
References m_attributes.
Referenced by KIGFX::OPENGL_GAL::BitmapText().
|
inlineinherited |
Get the fill status.
Definition at line 309 of file graphics_abstraction_layer.h.
References m_isFillEnabled.
Referenced by KIGFX::GAL_SCOPED_ATTRS::GAL_SCOPED_ATTRS().
|
inlineinherited |
Get the stroke status.
Definition at line 329 of file graphics_abstraction_layer.h.
References m_isStrokeEnabled.
Referenced by KIGFX::GAL_SCOPED_ATTRS::GAL_SCOPED_ATTRS().
|
inlineprivateinherited |
Definition at line 1160 of file graphics_abstraction_layer.h.
References m_layerDepth.
Referenced by KIGFX::GAL_SCOPED_ATTRS::GAL_SCOPED_ATTRS().
|
inlineinherited |
Get the line width.
Definition at line 399 of file graphics_abstraction_layer.h.
References m_lineWidth.
Referenced by BitmapText(), CALLBACK_GAL::DrawGlyph(), KIGFX::OPENGL_GAL::DrawGrid(), ROUTER_PREVIEW_ITEM::drawLineChain(), and KIGFX::GAL_SCOPED_ATTRS::GAL_SCOPED_ATTRS().
|
inlineinherited |
Definition at line 655 of file graphics_abstraction_layer.h.
References m_lookAtPoint.
Referenced by GetVisibleWorldExtents().
|
inlineinherited |
Definition at line 676 of file graphics_abstraction_layer.h.
References m_depthRange.
|
inlineinherited |
Definition at line 675 of file graphics_abstraction_layer.h.
References m_depthRange.
Referenced by EDIT_POINTS::ViewDraw(), KIGFX::PREVIEW::RULER_ITEM::ViewDraw(), and KIGFX::VIEW_OVERLAY::ViewDraw().
|
inlineinherited |
Get the minimum line width in pixels.
Definition at line 409 of file graphics_abstraction_layer.h.
References m_minLineWidth.
Referenced by KIGFX::OPENGL_GAL::BeginDrawing().
|
virtualinherited |
Definition at line 42 of file hidpi_gl_canvas.cpp.
References GetScaleFactor().
Referenced by EDA_3D_CANVAS::DoRePaint(), EDA_3D_MODEL_VIEWER::OnMouseMove(), HIDPI_GL_3D_CANVAS::OnMouseMoveCamera(), EDA_3D_MODEL_VIEWER::OnPaint(), and KIGFX::OPENGL_GAL::OPENGL_GAL().
|
inherited |
Convert the given point from client coordinates to native pixel coordinates.
Definition at line 54 of file hidpi_gl_canvas.cpp.
References GetScaleFactor().
Referenced by EDA_3D_MODEL_VIEWER::OnMouseMove(), HIDPI_GL_3D_CANVAS::OnMouseMoveCamera(), and HIDPI_GL_3D_CANVAS::OnMouseWheelCamera().
|
private |
Return a valid key that can be used as a new group number.
Definition at line 2757 of file opengl_gal.cpp.
References m_groupCounter, and m_groups.
Referenced by BeginGroup().
|
inlineinherited |
Definition at line 664 of file graphics_abstraction_layer.h.
References m_rotation.
|
inherited |
Get the current scale factor.
Definition at line 66 of file hidpi_gl_canvas.cpp.
Referenced by KIGFX::OPENGL_GAL::BeginDrawing(), KIGFX::OPENGL_GAL::DrawGrid(), KIGFX::PREVIEW::GetConstantGlyphHeight(), GetNativePixelSize(), GetNativePosition(), KIGFX::OPENGL_GAL::getScreenPixelSize(), and KIGFX::OPENGL_GAL::ResizeScreen().
|
inlineinherited |
Definition at line 647 of file graphics_abstraction_layer.h.
References m_screenDPI.
|
inlineinherited |
Return GAL canvas size in pixels.
Definition at line 262 of file graphics_abstraction_layer.h.
References m_screenSize.
Referenced by BOARD_PRINTOUT::DrawPage(), SCH_PRINTOUT::PrintPage(), and KIGFX::PREVIEW::RULER_ITEM::ViewDraw().
|
private |
Definition at line 540 of file opengl_gal.cpp.
References HIDPI_GL_CANVAS::GetScaleFactor(), and KIGFX::GAL::m_screenSize.
Referenced by BeginDrawing().
|
inlineinherited |
Get the screen <-> world transformation matrix.
Definition at line 609 of file graphics_abstraction_layer.h.
References m_screenWorldMatrix.
Referenced by GetVisibleWorldExtents(), KIGFX::OPENGL_GAL::getWorldPixelSize(), screenSpaceCircle(), screenSpaceLine(), ROUTER_STATUS_VIEW_ITEM::ViewDraw(), and TUNING_STATUS_VIEW_ITEM::ViewDraw().
|
inlineinherited |
Get the stroke color.
Definition at line 369 of file graphics_abstraction_layer.h.
References m_strokeColor.
Referenced by KIGFX::PREVIEW::DrawTextNextToCursor(), KIGFX::GAL_SCOPED_ATTRS::GAL_SCOPED_ATTRS(), and KIGFX::PREVIEW::RULER_ITEM::ViewDraw().
|
inlineoverridevirtual |
Return the swap interval. -1 for adaptive, 0 for disabled/unknown.
Reimplemented from KIGFX::GAL.
Definition at line 198 of file opengl_gal.h.
References m_swapInterval.
|
overridevirtual |
Get the currently used target for rendering.
Reimplemented from KIGFX::GAL.
Definition at line 2093 of file opengl_gal.cpp.
References m_currentTarget.
|
inlineinherited |
Definition at line 494 of file graphics_abstraction_layer.h.
References m_attributes.
Referenced by KIGFX::OPENGL_GAL::BitmapText().
|
inlineinherited |
Return the visible grid size in x and y directions.
Definition at line 856 of file graphics_abstraction_layer.h.
References computeMinGridSpacing(), m_gridSize, m_gridStyle, m_gridTick, m_worldScale, KIGFX::SMALL_CROSS, VECTOR2< T >::x, and VECTOR2< T >::y.
Referenced by KIGFX::OPENGL_GAL::DrawGrid().
|
inherited |
Definition at line 203 of file graphics_abstraction_layer.cpp.
References GetLookAtPoint(), MATRIX3x3< T >::GetScale(), GetScreenWorldMatrix(), m_screenSize, BOX2< Vec >::SetOrigin(), BOX2< Vec >::SetSize(), VECTOR2< T >::x, and VECTOR2< T >::y.
Referenced by ROUTER_TOOL::handleCommonEvents(), and ROUTER_TOOL::InlineDrag().
|
private |
Definition at line 533 of file opengl_gal.cpp.
References std::abs(), MATRIX3x3< T >::GetScale(), KIGFX::GAL::GetScreenWorldMatrix(), VECTOR2< T >::x, and VECTOR2< T >::y.
Referenced by BeginDrawing(), and DrawGrid().
|
inlineinherited |
Get the world scale.
Definition at line 683 of file graphics_abstraction_layer.h.
References m_worldScale.
Referenced by KIGFX::SCH_PAINTER::draw(), KIGFX::DrawDashedLine(), KIGFX::PREVIEW::DrawTextNextToCursor(), drawTicksAlongLine(), KIGFX::PREVIEW::GetConstantGlyphHeight(), SCH_BASE_FRAME::RefreshZoomDependentItems(), KIGFX::PREVIEW::RULER_ITEM::ViewDraw(), and RATSNEST_VIEW_ITEM::ViewDraw().
|
inlineinherited |
Get the world <-> screen transformation matrix.
Definition at line 599 of file graphics_abstraction_layer.h.
References m_worldScreenMatrix.
|
inlineinherited |
Definition at line 658 of file graphics_abstraction_layer.h.
References m_zoomFactor.
Referenced by COMMON_TOOLS::doZoomInOut(), and EDA_DRAW_FRAME::OnUpdateSelectZoom().
|
overridevirtual |
Return true if the target exists.
aTarget | is the target to be checked. |
Reimplemented from KIGFX::GAL.
Definition at line 2134 of file opengl_gal.cpp.
References m_overlayBuffer, m_tempBuffer, KIGFX::TARGET_CACHED, KIGFX::TARGET_NONCACHED, KIGFX::TARGET_OVERLAY, and KIGFX::TARGET_TEMP.
|
private |
Basic OpenGL initialization and feature checks.
std::runtime_error | if any of the OpenGL feature checks failed |
Definition at line 2769 of file opengl_gal.cpp.
References enableGlDebug(), KIGFX::BUILTIN_FONT::font_image, m_cachedManager, m_isContextLocked, m_isInitialized, m_nonCachedManager, m_overlayManager, m_shader, m_swapInterval, m_tempManager, m_tesselator, SetOpenGLInfo(), GL_UTILS::SetSwapInterval(), setupShaderParameters(), KIGFX::SHADER_TYPE_FRAGMENT, and KIGFX::SHADER_TYPE_VERTEX.
Referenced by BeginDrawing(), beginUpdate(), and CheckFeatures().
|
inlinevirtualinherited |
Return true if the GAL engine is a Cairo based type.
Reimplemented in KIGFX::CAIRO_GAL_BASE.
Definition at line 82 of file graphics_abstraction_layer.h.
Referenced by getShadowLayer().
|
inlineoverridevirtual |
Checks the state of the context lock.
Reimplemented from KIGFX::GAL.
Definition at line 310 of file opengl_gal.h.
References m_isContextLocked.
|
inlineinherited |
Return information about cursor visibility.
Definition at line 981 of file graphics_abstraction_layer.h.
References m_forceDisplayCursor, and m_isCursorEnabled.
Referenced by KIGFX::CAIRO_GAL_BASE::blitCursor(), and KIGFX::OPENGL_GAL::blitCursor().
|
inlineinherited |
Definition at line 697 of file graphics_abstraction_layer.h.
References m_globalFlipX.
Referenced by KIGFX::CAIRO_GAL_BASE::angle_xform(), KIGFX::CAIRO_GAL_BASE::arc_angles_xform_and_normalize(), KIGFX::PREVIEW::DrawTextNextToCursor(), DS_PROXY_VIEW_ITEM::ViewDraw(), ROUTER_STATUS_VIEW_ITEM::ViewDraw(), and TUNING_STATUS_VIEW_ITEM::ViewDraw().
|
inlineinherited |
Definition at line 698 of file graphics_abstraction_layer.h.
References m_globalFlipY.
|
inlineinherited |
Definition at line 471 of file graphics_abstraction_layer.h.
References m_attributes.
|
inlineinherited |
Definition at line 474 of file graphics_abstraction_layer.h.
References m_attributes.
|
inlineinherited |
Definition at line 477 of file graphics_abstraction_layer.h.
References m_attributes.
|
inlineoverridevirtual |
Return the initialization status for the canvas.
Return true if the GAL canvas is visible on the screen.
Reimplemented from KIGFX::GAL.
Definition at line 104 of file opengl_gal.h.
|
inlineoverridevirtual |
Return true if the GAL engine is a OpenGL based type.
Reimplemented from KIGFX::GAL.
Definition at line 101 of file opengl_gal.h.
|
inlineinherited |
Definition at line 480 of file graphics_abstraction_layer.h.
References m_attributes.
Referenced by KIGFX::OPENGL_GAL::BitmapText().
|
inlineoverridevirtual |
Return true if the GAL canvas is visible on the screen.
Reimplemented from KIGFX::GAL.
Definition at line 111 of file opengl_gal.h.
Referenced by BeginDrawing(), and beginUpdate().
|
overridevirtual |
Use GAL_CONTEXT_LOCKER RAII object unless you know what you're doing.
Reimplemented from KIGFX::GAL.
Definition at line 782 of file opengl_gal.cpp.
References PGM_BASE::GetGLContextManager(), GL_CONTEXT_MANAGER::LockCtx(), m_glPrivContext, m_isContextLocked, m_lockClientCookie, and Pgm().
Ensure that the first element is smaller than the second.
Definition at line 1093 of file graphics_abstraction_layer.h.
References T.
Referenced by KIGFX::CAIRO_GAL_BASE::arc_angles_xform_and_normalize(), KIGFX::OPENGL_GAL::DrawArc(), KIGFX::OPENGL_GAL::DrawArcSegment(), KIGFX::CAIRO_GAL_BASE::DrawGrid(), and KIGFX::OPENGL_GAL::DrawGrid().
|
overrideprotectedvirtualinherited |
Handler for observer settings changes.
Implements KIGFX::GAL_DISPLAY_OPTIONS_OBSERVER.
Definition at line 103 of file graphics_abstraction_layer.cpp.
References updatedGalDisplayOptions().
|
private |
This is the OnPaint event handler.
aEvent | is the OnPaint event. |
Definition at line 2645 of file opengl_gal.cpp.
References PostPaint().
Referenced by OPENGL_GAL().
|
private |
Give the correct cursor image when the native widget asks for it.
aEvent | is the cursor event to plac the cursor into. |
Definition at line 2197 of file opengl_gal.cpp.
References m_currentwxCursor.
Referenced by OPENGL_GAL().
void OPENGL_GAL::PostPaint | ( | wxPaintEvent & | aEvent | ) |
Post an event to #m_paint_listener.
A post is used so that the actual drawing function can use a device context type that is not specific to the wxEVT_PAINT event, just by changing the PostPaint code.
Definition at line 502 of file opengl_gal.cpp.
References m_paintListener.
Referenced by onPaint().
|
private |
Reserve specified number of line quads.
aLineCount | the number of line quads to reserve. |
Definition at line 2266 of file opengl_gal.cpp.
References m_currentManager.
Referenced by DrawArc(), DrawArcSegment(), DrawGlyphs(), drawLineQuad(), drawPolyline(), and DrawPolylines().
|
inherited |
Reset text attributes to default styling.
FONT TODO: do we need any of this in GAL anymore?
Normally, custom attributes will be set individually after this, otherwise you can use SetTextAttributes()
Definition at line 157 of file graphics_abstraction_layer.cpp.
References GR_TEXT_H_ALIGN_CENTER, GR_TEXT_V_ALIGN_CENTER, SetFontBold(), SetFontItalic(), SetFontUnderlined(), SetGlyphSize(), SetHorizontalJustify(), SetTextMirrored(), and SetVerticalJustify().
Referenced by GAL(), KIGFX::PREVIEW::ARC_ASSISTANT::ViewDraw(), KIGFX::PREVIEW::BEZIER_ASSISTANT::ViewDraw(), KIGFX::PREVIEW::RULER_ITEM::ViewDraw(), and KIGFX::PREVIEW::TWO_POINT_ASSISTANT::ViewDraw().
|
overridevirtual |
Resizes the canvas.
Reimplemented from KIGFX::GAL.
Definition at line 1925 of file opengl_gal.cpp.
References HIDPI_GL_CANVAS::GetScaleFactor(), m_compositor, m_isFramebufferInitialized, and KIGFX::GAL::m_screenSize.
|
overridevirtual |
Restore the context.
Reimplemented from KIGFX::GAL.
Definition at line 2008 of file opengl_gal.cpp.
References m_currentManager.
Referenced by BitmapText(), DrawArc(), DrawArcSegment(), drawBitmapOverbar(), drawFilledSemiCircle(), drawSegment(), and drawStrokedSemiCircle().
|
overridevirtual |
Rotate the context.
aAngle | is the rotation angle in radians. |
Reimplemented from KIGFX::GAL.
Definition at line 1984 of file opengl_gal.cpp.
References m_currentManager.
|
overridevirtual |
Save the context.
Reimplemented from KIGFX::GAL.
Definition at line 2002 of file opengl_gal.cpp.
References m_currentManager.
Referenced by BitmapText(), DrawArc(), DrawArcSegment(), drawBitmapOverbar(), drawFilledSemiCircle(), drawSegment(), and drawStrokedSemiCircle().
|
overridevirtual |
Scale the context.
aScale | is the scale factor for the x- and y-axis. |
Reimplemented from KIGFX::GAL.
Definition at line 1996 of file opengl_gal.cpp.
References m_currentManager, VECTOR2< T >::x, and VECTOR2< T >::y.
|
inlineinherited |
Set the axes color.
aAxesColor | is the color to draw the axes if enabled. |
Definition at line 892 of file graphics_abstraction_layer.h.
References m_axesColor.
Referenced by KIGFX::CAIRO_GAL_BASE::CAIRO_GAL_BASE(), SCH_BASE_FRAME::CommonSettingsChanged(), SYMBOL_VIEWER_FRAME::CommonSettingsChanged(), KIGFX::OPENGL_GAL::OPENGL_GAL(), and SYMBOL_EDIT_FRAME::SwitchCanvas().
|
inlineinherited |
Enable drawing the axes.
Definition at line 900 of file graphics_abstraction_layer.h.
References m_axesEnabled.
Referenced by FOOTPRINT_EDIT_FRAME::ActivateGalCanvas(), GAL(), DIALOG_PAD_PROPERTIES::prepareCanvas(), FP_TREE_SYNCHRONIZING_ADAPTER::ShowPreview(), FOOTPRINT_EDIT_FRAME::SwitchCanvas(), and SYMBOL_EDIT_FRAME::SwitchCanvas().
|
inlineinherited |
Definition at line 273 of file graphics_abstraction_layer.h.
References m_clearColor.
Referenced by BOARD_PRINTOUT::DrawPage(), and SCH_PRINTOUT::PrintPage().
|
inlineinherited |
Draw every tick line wider.
aInterval | increase the width of every aInterval line, if 0 do not use this feature. |
Definition at line 910 of file graphics_abstraction_layer.h.
References m_gridTick.
Referenced by GAL().
|
inlineinherited |
Set the cursor color.
aCursorColor | is the color of the cursor. |
Definition at line 991 of file graphics_abstraction_layer.h.
References m_cursorColor.
Referenced by GAL().
|
inlineinherited |
Enable/disable cursor.
aCursorEnabled | is true if the cursor should be drawn, else false. |
Definition at line 971 of file graphics_abstraction_layer.h.
References m_isCursorEnabled.
Referenced by GAL().
|
inlineinherited |
Set the range of the layer depth.
Usually required for the OpenGL implementation, any object outside this range is not drawn.
The MinDepth (x) is closest to the clipping plane (top) while the MaxDepth (y) is farthest from the clipping plane (bottom).
Definition at line 674 of file graphics_abstraction_layer.h.
References m_depthRange.
Referenced by GAL().
|
inlinevirtualinherited |
Set the fill color.
aColor | is the color for filling. |
Reimplemented in KIGFX::CAIRO_GAL_BASE.
Definition at line 339 of file graphics_abstraction_layer.h.
References m_fillColor.
Referenced by KIGFX::OPENGL_GAL::BeginDrawing(), KIGFX::PREVIEW::ANGLE_ITEM::drawPreviewShape(), ROUTER_PREVIEW_ITEM::drawShape(), KIGFX::VIEW_OVERLAY::COMMAND_SET_COLOR::Execute(), GAL(), KIGFX::knockoutText(), KIGFX::PREVIEW::SIMPLE_OVERLAY_ITEM::setupGal(), EDIT_POINTS::ViewDraw(), KIGFX::PREVIEW::SELECTION_AREA::ViewDraw(), KIGFX::SNAP_INDICATOR::ViewDraw(), ROUTER_PREVIEW_ITEM::ViewDraw(), ROUTER_STATUS_VIEW_ITEM::ViewDraw(), and TUNING_STATUS_VIEW_ITEM::ViewDraw().
|
inlineinherited |
Sets flipping of the screen.
xAxis | is the flip flag for the X axis. |
yAxis | is the flip flag for the Y axis. |
Definition at line 691 of file graphics_abstraction_layer.h.
References m_globalFlipX, and m_globalFlipY.
Referenced by GAL(), and BOARD_PRINTOUT::setupGal().
|
inlineinherited |
Definition at line 470 of file graphics_abstraction_layer.h.
References m_attributes.
Referenced by ResetTextAttributes().
|
inlineinherited |
Definition at line 473 of file graphics_abstraction_layer.h.
References m_attributes.
Referenced by ResetTextAttributes().
|
inlineinherited |
Definition at line 476 of file graphics_abstraction_layer.h.
References m_attributes.
Referenced by ResetTextAttributes().
|
inlineinherited |
Definition at line 467 of file graphics_abstraction_layer.h.
References m_attributes.
Referenced by KIGFX::bitmapText(), KIGFX::PREVIEW::ANGLE_ITEM::drawPreviewShape(), KIGFX::VIEW_OVERLAY::COMMAND_GLYPH_SIZE::Execute(), and ResetTextAttributes().
|
inlineinherited |
Set the grid color.
aGridColor | is the grid color, it should have a low alpha value for the best effect. |
Definition at line 882 of file graphics_abstraction_layer.h.
References m_gridColor.
Referenced by GERBVIEW_FRAME::ActivateGalCanvas(), KIGFX::CAIRO_GAL_BASE::CAIRO_GAL_BASE(), KIGFX::OPENGL_GAL::OPENGL_GAL(), GERBVIEW_FRAME::SetGridColor(), and PCB_EDIT_FRAME::SetGridColor().
|
inlineinherited |
Set the origin point for the grid.
aGridOrigin | is a vector containing the grid origin point, in world coordinates. |
Definition at line 804 of file graphics_abstraction_layer.h.
References m_gridOffset, m_gridOrigin, and m_gridSize.
Referenced by PCB_CONTROL::DoSetGridOrigin(), PCB_EDIT_FRAME::RebuildAndRefresh(), and PCB_BASE_EDIT_FRAME::SetBoard().
|
inlineinherited |
Set the grid size.
aGridSize | is a vector containing the grid size in x and y direction. |
Definition at line 829 of file graphics_abstraction_layer.h.
References m_gridOffset, m_gridOrigin, and m_gridSize.
Referenced by FOOTPRINT_PREVIEW_PANEL::New(), COMMON_TOOLS::OnGridChanged(), and DIALOG_PAD_PROPERTIES::prepareCanvas().
|
inlineinherited |
Set the visibility setting of the grid.
aVisibility | is the new visibility setting of the grid. |
Definition at line 789 of file graphics_abstraction_layer.h.
References m_gridVisibility.
Referenced by GAL(), FOOTPRINT_PREVIEW_PANEL::New(), COMMON_TOOLS::OnGridChanged(), DIALOG_PAD_PROPERTIES::prepareCanvas(), and EDA_DRAW_FRAME::SetGridVisibility().
|
inlineinherited |
Definition at line 482 of file graphics_abstraction_layer.h.
References m_attributes.
Referenced by KIGFX::bitmapText(), and ResetTextAttributes().
|
inlinevirtualinherited |
Enable/disable fill.
aIsFillEnabled | is true, when the graphics objects should be filled, else false. |
Reimplemented in KIGFX::CAIRO_GAL_BASE.
Definition at line 299 of file graphics_abstraction_layer.h.
References m_isFillEnabled.
Referenced by KIGFX::boxText(), KIGFX::SCH_PAINTER::draw(), KIGFX::drawAltPinModesIcon(), ROUTER_PREVIEW_ITEM::drawLineChain(), KIGFX::PREVIEW::ANGLE_ITEM::drawPreviewShape(), ROUTER_PREVIEW_ITEM::drawShape(), DrawSnapNode(), KIGFX::PREVIEW::DrawTextNextToCursor(), KIGFX::VIEW_OVERLAY::COMMAND_SET_FILL::Execute(), GAL(), KIGFX::knockoutText(), KIGFX::PREVIEW::SIMPLE_OVERLAY_ITEM::setupGal(), KIGFX::strokeText(), EDIT_POINTS::ViewDraw(), KIGFX::ANCHOR_DEBUG::ViewDraw(), KIGFX::CONSTRUCTION_GEOM::ViewDraw(), KIGFX::ORIGIN_VIEWITEM::ViewDraw(), KIGFX::PREVIEW::RULER_ITEM::ViewDraw(), KIGFX::PREVIEW::SELECTION_AREA::ViewDraw(), RATSNEST_VIEW_ITEM::ViewDraw(), ROUTER_PREVIEW_ITEM::ViewDraw(), ROUTER_STATUS_VIEW_ITEM::ViewDraw(), and TUNING_STATUS_VIEW_ITEM::ViewDraw().
|
inlinevirtualinherited |
Enable/disable stroked outlines.
aIsStrokeEnabled | is true, if the outline of an object should be stroked. |
Reimplemented in KIGFX::CAIRO_GAL_BASE.
Definition at line 319 of file graphics_abstraction_layer.h.
References m_isStrokeEnabled.
Referenced by KIGFX::boxText(), KIGFX::SCH_PAINTER::draw(), KIGFX::drawAltPinModesIcon(), ROUTER_PREVIEW_ITEM::drawLineChain(), KIGFX::PREVIEW::POLYGON_ITEM::drawPreviewShape(), ROUTER_PREVIEW_ITEM::drawShape(), DrawSnapNode(), KIGFX::PREVIEW::DrawTextNextToCursor(), KIGFX::VIEW_OVERLAY::COMMAND_SET_STROKE::Execute(), GAL(), KIGFX::knockoutText(), KIGFX::PREVIEW::SIMPLE_OVERLAY_ITEM::setupGal(), KIGFX::strokeText(), EDIT_POINTS::ViewDraw(), KIGFX::ANCHOR_DEBUG::ViewDraw(), KIGFX::CONSTRUCTION_GEOM::ViewDraw(), KIGFX::ORIGIN_VIEWITEM::ViewDraw(), KIGFX::PREVIEW::RULER_ITEM::ViewDraw(), KIGFX::PREVIEW::SELECTION_AREA::ViewDraw(), RATSNEST_VIEW_ITEM::ViewDraw(), ROUTER_PREVIEW_ITEM::ViewDraw(), ROUTER_STATUS_VIEW_ITEM::ViewDraw(), and TUNING_STATUS_VIEW_ITEM::ViewDraw().
|
inlinevirtualinherited |
Set the depth of the layer (position on the z-axis)
If you do this, you should consider using a GAL_SCOPED_ATTR to ensure the depth is reset to the original value.
aLayerDepth | the layer depth for the objects. Smaller is closer to the viewer. |
Reimplemented in KIGFX::CAIRO_GAL_BASE.
Definition at line 422 of file graphics_abstraction_layer.h.
References m_depthRange, and m_layerDepth.
Referenced by AdvanceDepth(), ROUTER_PREVIEW_ITEM::drawShape(), KIGFX::OPENGL_GAL::drawTriangulatedPolyset(), GAL(), KIGFX::CAIRO_GAL_BASE::SetLayerDepth(), EDIT_POINTS::ViewDraw(), KIGFX::PREVIEW::RULER_ITEM::ViewDraw(), KIGFX::VIEW_OVERLAY::ViewDraw(), and ROUTER_PREVIEW_ITEM::ViewDraw().
|
inlinevirtualinherited |
Set the line width.
aLineWidth | is the line width. |
Reimplemented in KIGFX::CAIRO_GAL_BASE.
Definition at line 379 of file graphics_abstraction_layer.h.
References m_lineWidth.
Referenced by KIGFX::bitmapText(), KIFONT::FONT::Draw(), KIGFX::SCH_PAINTER::draw(), KIGFX::drawAltPinModesIcon(), KIGFX::OPENGL_GAL::DrawArcSegment(), drawBacksideTicks(), KIGFX::OPENGL_GAL::DrawGrid(), KIGFX::PREVIEW::ANGLE_ITEM::drawPreviewShape(), KIGFX::PREVIEW::POLYGON_ITEM::drawPreviewShape(), KIGFX::OPENGL_GAL::drawSegment(), ROUTER_PREVIEW_ITEM::drawShape(), drawTicksAlongLine(), KIGFX::VIEW_OVERLAY::COMMAND_SET_WIDTH::Execute(), PCB_IO_KICAD_SEXPR::formatRenderCache(), GAL(), screenSpaceCircle(), screenSpaceLine(), KIGFX::CAIRO_GAL_BASE::SetLineWidth(), KIGFX::PREVIEW::SIMPLE_OVERLAY_ITEM::setupGal(), EDIT_POINTS::ViewDraw(), KIGFX::ANCHOR_DEBUG::ViewDraw(), KIGFX::CONSTRUCTION_GEOM::ViewDraw(), KIGFX::ORIGIN_VIEWITEM::ViewDraw(), KIGFX::PREVIEW::RULER_ITEM::ViewDraw(), KIGFX::PREVIEW::SELECTION_AREA::ViewDraw(), RATSNEST_VIEW_ITEM::ViewDraw(), ROUTER_STATUS_VIEW_ITEM::ViewDraw(), and TUNING_STATUS_VIEW_ITEM::ViewDraw().
|
inlineinherited |
Get/set the Point in world space to look at.
This point corresponds with the center of the actual drawing area.
Definition at line 654 of file graphics_abstraction_layer.h.
References m_lookAtPoint.
Referenced by BOARD_PRINTOUT::DrawPage(), GAL(), and SCH_PRINTOUT::PrintPage().
|
overridevirtual |
Set the minimum line width in pixels.
aLineWidth | is the minimum line width. |
Reimplemented from KIGFX::GAL.
Definition at line 709 of file opengl_gal.cpp.
References m_shader, KIGFX::GAL::SetMinLineWidth(), and ufm_minLinePixelWidth.
|
inline |
Definition at line 298 of file opengl_gal.h.
References m_mouseListener.
|
overridevirtual |
Set the cursor in the native panel.
aCursor | is the cursor to use in the native panel |
Reimplemented from KIGFX::GAL.
Definition at line 2179 of file opengl_gal.cpp.
References CURSOR_STORE::GetCursor(), KIGFX::GAL::m_currentNativeCursor, m_currentwxCursor, and KIGFX::GAL::SetNativeCursorStyle().
|
inlineoverridevirtual |
Set negative draw mode in the renderer.
When negative mode is enabled, drawn items will subtract from previously drawn items. This is mainly needed for Gerber negative item support in Cairo, since unlike in OpenGL, objects drawn with zero opacity on top of other objects would not normally mask objects in Cairo. This method is a no-op in OpenGL.
aSetting | is true if negative mode should be enabled |
Reimplemented from KIGFX::GAL.
Definition at line 270 of file opengl_gal.h.
|
inline |
Definition at line 303 of file opengl_gal.h.
References m_paintListener.
|
inlineinherited |
Get/set the rotation angle (in radians).
Definition at line 663 of file graphics_abstraction_layer.h.
References m_rotation.
Referenced by GAL().
|
inlineinherited |
Set the dots per inch of the screen.
This value depends on the user screen, it should be configurable by the application. For instance a typical notebook with HD+ resolution (1600x900) has 106 DPI.
Definition at line 646 of file graphics_abstraction_layer.h.
References m_screenDPI.
Referenced by KIGFX::CAIRO_PRINT_GAL::CAIRO_PRINT_GAL(), and GAL().
|
inlineinherited |
Definition at line 638 of file graphics_abstraction_layer.h.
References m_screenSize.
Referenced by KIGFX::CAIRO_PRINT_GAL::SetSheetSize().
|
inlinevirtualinherited |
Set the stroke color.
aColor | is the color for stroking the outline. |
Reimplemented in KIGFX::CAIRO_GAL_BASE.
Definition at line 359 of file graphics_abstraction_layer.h.
References m_strokeColor.
Referenced by KIGFX::OPENGL_GAL::BeginDrawing(), KIGFX::drawAltPinModesIcon(), KIGFX::OPENGL_GAL::DrawGrid(), KIGFX::PREVIEW::ANGLE_ITEM::drawPreviewShape(), KIGFX::PREVIEW::POLYGON_ITEM::drawPreviewShape(), ROUTER_PREVIEW_ITEM::drawShape(), KIGFX::PREVIEW::DrawTextNextToCursor(), KIGFX::OPENGL_GAL::drawTriangulatedPolyset(), KIGFX::VIEW_OVERLAY::COMMAND_SET_COLOR::Execute(), GAL(), KIGFX::PREVIEW::SIMPLE_OVERLAY_ITEM::setupGal(), EDIT_POINTS::ViewDraw(), KIGFX::ANCHOR_DEBUG::ViewDraw(), KIGFX::CONSTRUCTION_GEOM::ViewDraw(), KIGFX::ORIGIN_VIEWITEM::ViewDraw(), KIGFX::PREVIEW::RULER_ITEM::ViewDraw(), KIGFX::PREVIEW::SELECTION_AREA::ViewDraw(), RATSNEST_VIEW_ITEM::ViewDraw(), ROUTER_PREVIEW_ITEM::ViewDraw(), ROUTER_STATUS_VIEW_ITEM::ViewDraw(), and TUNING_STATUS_VIEW_ITEM::ViewDraw().
|
overridevirtual |
Set the target for rendering.
aTarget | is the new target for rendering. |
Reimplemented from KIGFX::GAL.
Definition at line 2078 of file opengl_gal.cpp.
References m_cachedManager, m_currentManager, m_currentTarget, m_nonCachedManager, m_overlayManager, m_tempManager, KIGFX::TARGET_CACHED, KIGFX::TARGET_NONCACHED, KIGFX::TARGET_OVERLAY, and KIGFX::TARGET_TEMP.
Referenced by DrawGrid(), OPENGL_GAL(), and StartDiffLayer().
|
inlineinherited |
Definition at line 479 of file graphics_abstraction_layer.h.
References m_attributes.
Referenced by ResetTextAttributes(), and KIGFX::PREVIEW::RULER_ITEM::ViewDraw().
|
private |
Set up the shader parameters for OpenGL rendering.
This method initializes all the uniform parameter locations after the shader has been linked.
Definition at line 2869 of file opengl_gal.cpp.
References m_shader, ufm_antialiasingOffset, ufm_fontTexture, ufm_fontTextureWidth, ufm_minLinePixelWidth, ufm_pixelSizeMultiplier, ufm_screenPixelSize, and ufm_worldPixelSize.
Referenced by init().
|
inlineinherited |
Definition at line 62 of file hidpi_gl_canvas.h.
References m_settings.
|
inlineinherited |
Definition at line 489 of file graphics_abstraction_layer.h.
References m_attributes.
Referenced by KIGFX::bitmapText(), and ResetTextAttributes().
|
inlineinherited |
Set the world <-> screen transformation matrix.
aMatrix | is the 3x3 world <-> screen transformation matrix. |
Definition at line 619 of file graphics_abstraction_layer.h.
References m_worldScreenMatrix.
|
inlineinherited |
Set the unit length.
This defines the length [inch] per one integer. For instance a value 0.001 means that the coordinate [1000, 1000] corresponds with a point at (1 inch, 1 inch) or 1 mil resolution per integer.
Definition at line 636 of file graphics_abstraction_layer.h.
References m_worldUnitLength.
Referenced by GAL(), GERBVIEW_DRAW_PANEL_GAL::GERBVIEW_DRAW_PANEL_GAL(), PL_DRAW_PANEL_GAL::PL_DRAW_PANEL_GAL(), SCH_PRINTOUT::PrintPage(), GERBVIEW_PRINTOUT::setupGal(), PCBNEW_PRINTOUT::setupGal(), GERBVIEW_DRAW_PANEL_GAL::SwitchBackend(), and PL_DRAW_PANEL_GAL::SwitchBackend().
|
inlineinherited |
Definition at line 657 of file graphics_abstraction_layer.h.
References m_zoomFactor.
Referenced by BOARD_PRINTOUT::DrawPage(), GAL(), and SCH_PRINTOUT::PrintPage().
|
overridevirtual |
Shows/hides the GAL canvas.
Reimplemented from KIGFX::GAL.
Definition at line 1938 of file opengl_gal.cpp.
|
private |
Skip the gesture event to the parent.
aEvent | is the gesture event. |
Definition at line 2659 of file opengl_gal.cpp.
References m_mouseListener.
Referenced by OPENGL_GAL().
|
private |
Skip the mouse event to the parent.
aEvent | is the mouse event. |
Definition at line 2651 of file opengl_gal.cpp.
References m_mouseListener.
Referenced by OPENGL_GAL().
|
overridevirtual |
Begins rendering of a differential layer.
Used by gerbview's differential mode.
Differential layers have their drawn objects blended onto the lower layers differently so we need to end drawing of current objects and start a new set to be completed with a different blend mode.
Reimplemented from KIGFX::GAL.
Definition at line 2147 of file opengl_gal.cpp.
References ClearTarget(), m_currentManager, m_tempBuffer, SetTarget(), and KIGFX::TARGET_TEMP.
|
inlinevirtualinherited |
Begins rendering in a new layer that will be copied to the main layer in EndNegativesLayer().
For Cairo, layers with negative items need a new layer so when negative layers _CLEAR sections it doesn't delete drawings on layers below them. No-op in OpenGL
Reimplemented in KIGFX::CAIRO_GAL.
Definition at line 772 of file graphics_abstraction_layer.h.
Compute the point position in screen coordinates from given world coordinates.
aPoint | the point position in world coordinates. |
Definition at line 953 of file graphics_abstraction_layer.h.
References m_worldScreenMatrix.
Referenced by KIGFX::CAIRO_GAL_BASE::blitCursor(), and KIGFX::PREVIEW::RULER_ITEM::ViewDraw().
Compute the point position in world coordinates from given screen coordinates.
aPoint | the point position in screen coordinates. |
Definition at line 942 of file graphics_abstraction_layer.h.
References m_screenWorldMatrix.
|
overridevirtual |
Transform the context.
aTransformation | is the transformation matrix. |
Reimplemented from KIGFX::GAL.
Definition at line 1966 of file opengl_gal.cpp.
References MATRIX3x3< T >::m_data.
|
overridevirtual |
Translate the context.
aTranslation | is the translation vector. |
Reimplemented from KIGFX::GAL.
Definition at line 1990 of file opengl_gal.cpp.
References m_currentManager, VECTOR2< T >::x, and VECTOR2< T >::y.
Referenced by BitmapText(), drawBitmapChar(), and drawBitmapOverbar().
|
overridevirtual |
Reimplemented from KIGFX::GAL.
Definition at line 792 of file opengl_gal.cpp.
References PGM_BASE::GetGLContextManager(), m_glPrivContext, m_isContextLocked, m_lockClientCookie, Pgm(), and GL_CONTEXT_MANAGER::UnlockCtx().
|
overrideprivatevirtual |
Handle updating display options.
Derived classes should call up to this to set base-class methods.
Reimplemented from KIGFX::GAL.
Definition at line 510 of file opengl_gal.cpp.
References KIGFX::GAL::GAL_CONTEXT_LOCKER, m_compositor, m_isFramebufferInitialized, KIGFX::GAL::m_options, Refresh(), refresh, and KIGFX::GAL::updatedGalDisplayOptions().
|
staticprivate |
Bitmap font texture handle (shared)
Definition at line 346 of file opengl_gal.h.
Referenced by BeginDrawing(), and ~OPENGL_GAL().
|
staticprotectedinherited |
Depth level on which the grid is drawn.
Definition at line 1064 of file graphics_abstraction_layer.h.
|
privateinherited |
Definition at line 1165 of file graphics_abstraction_layer.h.
Referenced by BitmapText(), GetGlyphSize(), GetHorizontalJustify(), GetVerticalJustify(), IsFontBold(), IsFontItalic(), IsFontUnderlined(), IsTextMirrored(), SetFontBold(), SetFontItalic(), SetFontUnderlined(), SetGlyphSize(), SetHorizontalJustify(), SetTextMirrored(), and SetVerticalJustify().
|
protectedinherited |
Color of the axes.
Definition at line 1142 of file graphics_abstraction_layer.h.
Referenced by KIGFX::CAIRO_GAL_BASE::drawAxes(), KIGFX::OPENGL_GAL::DrawGrid(), and SetAxesColor().
|
protectedinherited |
Should the axes be drawn.
Definition at line 1143 of file graphics_abstraction_layer.h.
Referenced by KIGFX::CAIRO_GAL_BASE::DrawGrid(), KIGFX::OPENGL_GAL::DrawGrid(), SetAxesEnabled(), and updatedGalDisplayOptions().
|
private |
Definition at line 393 of file opengl_gal.h.
Referenced by ClearCache(), DrawBitmap(), and OPENGL_GAL().
|
private |
Container for storing cached VERTEX_ITEMs.
Definition at line 355 of file opengl_gal.h.
Referenced by BeginDrawing(), BeginGroup(), beginUpdate(), ChangeGroupColor(), ChangeGroupDepth(), ClearCache(), DrawGroup(), EnableDepthTest(), EndDrawing(), EndGroup(), endUpdate(), init(), OPENGL_GAL(), SetTarget(), and ~OPENGL_GAL().
|
protectedinherited |
Definition at line 1130 of file graphics_abstraction_layer.h.
Referenced by KIGFX::CAIRO_PRINT_GAL::CAIRO_PRINT_GAL(), KIGFX::CAIRO_GAL_BASE::ClearScreen(), KIGFX::OPENGL_GAL::ClearTarget(), GetClearColor(), and SetClearColor().
|
private |
Handles multiple rendering targets.
Definition at line 363 of file opengl_gal.h.
Referenced by BeginDrawing(), blitCursor(), ClearScreen(), ClearTarget(), DrawGrid(), EndDiffLayer(), EndDrawing(), OPENGL_GAL(), ResizeScreen(), updatedGalDisplayOptions(), and ~OPENGL_GAL().
|
protectedinherited |
Crosshair drawing mode.
Definition at line 1153 of file graphics_abstraction_layer.h.
Referenced by KIGFX::CAIRO_GAL_BASE::blitCursor(), KIGFX::OPENGL_GAL::blitCursor(), GAL(), and updatedGalDisplayOptions().
|
private |
Currently used VERTEX_MANAGER (for storing VERTEX_ITEMs).
Definition at line 353 of file opengl_gal.h.
Referenced by BitmapText(), DrawArc(), DrawArcSegment(), DrawBitmap(), drawBitmapChar(), drawBitmapOverbar(), drawCircle(), drawFilledSemiCircle(), DrawGlyph(), DrawGlyphs(), DrawHoleWall(), DrawLine(), drawLineQuad(), drawPolygon(), drawPolyline(), DrawRectangle(), drawSegment(), drawSegmentChain(), drawSemiCircle(), drawStrokedSemiCircle(), drawTriangulatedPolyset(), EndDiffLayer(), OPENGL_GAL(), reserveLineQuads(), Restore(), Rotate(), Save(), Scale(), SetTarget(), StartDiffLayer(), and Translate().
|
protectedinherited |
Current cursor.
Definition at line 1156 of file graphics_abstraction_layer.h.
Referenced by GAL(), KIGFX::CAIRO_GAL::SetNativeCursorStyle(), SetNativeCursorStyle(), and KIGFX::OPENGL_GAL::SetNativeCursorStyle().
|
private |
Current rendering target.
Definition at line 367 of file opengl_gal.h.
Referenced by GetTarget(), and SetTarget().
|
private |
wx cursor showing the current native cursor.
Definition at line 391 of file opengl_gal.h.
Referenced by onSetNativeCursor(), and SetNativeCursorStyle().
|
protectedinherited |
Cursor color.
Definition at line 1152 of file graphics_abstraction_layer.h.
Referenced by getCursorColor(), and SetCursorColor().
|
protectedinherited |
Current cursor position (world coordinates)
Definition at line 1154 of file graphics_abstraction_layer.h.
Referenced by KIGFX::CAIRO_GAL_BASE::blitCursor(), KIGFX::OPENGL_GAL::blitCursor(), KIGFX::CAIRO_GAL_BASE::DrawCursor(), and KIGFX::OPENGL_GAL::DrawCursor().
|
protectedinherited |
Range of the depth.
Definition at line 1133 of file graphics_abstraction_layer.h.
Referenced by KIGFX::OPENGL_GAL::BeginDrawing(), KIGFX::CAIRO_GAL_BASE::DrawGrid(), GetMaxDepth(), GetMinDepth(), SetDepthRange(), and SetLayerDepth().
|
protectedinherited |
Stored depth values.
Definition at line 1106 of file graphics_abstraction_layer.h.
|
protectedinherited |
The fill color.
Definition at line 1128 of file graphics_abstraction_layer.h.
Referenced by KIGFX::OPENGL_GAL::BeginDrawing(), KIGFX::OPENGL_GAL::DrawArc(), KIGFX::OPENGL_GAL::DrawArcSegment(), KIGFX::OPENGL_GAL::drawCircle(), KIGFX::OPENGL_GAL::DrawGlyph(), KIGFX::OPENGL_GAL::DrawGlyphs(), KIGFX::CAIRO_GAL_BASE::DrawGroup(), KIGFX::OPENGL_GAL::DrawHoleWall(), KIGFX::OPENGL_GAL::drawPolygon(), KIGFX::OPENGL_GAL::DrawRectangle(), KIGFX::CAIRO_GAL_BASE::DrawSegment(), KIGFX::OPENGL_GAL::drawSegment(), KIGFX::OPENGL_GAL::drawSemiCircle(), KIGFX::OPENGL_GAL::drawTriangulatedPolyset(), KIGFX::CAIRO_GAL_BASE::flushPath(), GetFillColor(), KIGFX::CAIRO_GAL_BASE::SetFillColor(), SetFillColor(), and KIGFX::CAIRO_GAL_BASE::storePath().
|
protectedinherited |
Always show cursor.
Definition at line 1151 of file graphics_abstraction_layer.h.
Referenced by GAL(), IsCursorEnabled(), and updatedGalDisplayOptions().
|
staticprivate |
Parent OpenGL context.
Definition at line 339 of file opengl_gal.h.
Referenced by OPENGL_GAL(), and ~OPENGL_GAL().
|
protectedinherited |
Flag for X axis flipping.
Definition at line 1119 of file graphics_abstraction_layer.h.
Referenced by BitmapText(), KIGFX::OPENGL_GAL::BitmapText(), KIGFX::CAIRO_PRINT_GAL::ComputeWorldScreenMatrix(), ComputeWorldScreenMatrix(), IsFlippedX(), and SetFlip().
|
protectedinherited |
Flag for Y axis flipping.
Definition at line 1120 of file graphics_abstraction_layer.h.
Referenced by KIGFX::OPENGL_GAL::BitmapText(), KIGFX::CAIRO_PRINT_GAL::ComputeWorldScreenMatrix(), ComputeWorldScreenMatrix(), IsFlippedY(), and SetFlip().
|
private |
Canvas-specific OpenGL context.
Definition at line 340 of file opengl_gal.h.
Referenced by LockContext(), OPENGL_GAL(), UnlockContext(), and ~OPENGL_GAL().
|
protectedinherited |
Color of the grid.
Definition at line 1141 of file graphics_abstraction_layer.h.
Referenced by KIGFX::OPENGL_GAL::DrawGrid(), KIGFX::CAIRO_GAL_BASE::drawGridCross(), KIGFX::CAIRO_GAL_BASE::drawGridLine(), KIGFX::CAIRO_GAL_BASE::drawGridPoint(), and SetGridColor().
|
protectedinherited |
Line width of the grid.
Definition at line 1145 of file graphics_abstraction_layer.h.
Referenced by KIGFX::CAIRO_GAL_BASE::DrawGrid(), KIGFX::OPENGL_GAL::DrawGrid(), GAL(), GetGridLineWidth(), and updatedGalDisplayOptions().
|
protectedinherited |
Minimum screen size of the grid (pixels) below which the grid is not drawn.
Definition at line 1146 of file graphics_abstraction_layer.h.
Referenced by computeMinGridSpacing(), GAL(), and updatedGalDisplayOptions().
|
protectedinherited |
The grid offset to compensate cursor position.
Definition at line 1140 of file graphics_abstraction_layer.h.
Referenced by GetGridPoint(), SetGridOrigin(), and SetGridSize().
|
protectedinherited |
The grid origin.
Definition at line 1139 of file graphics_abstraction_layer.h.
Referenced by KIGFX::CAIRO_GAL_BASE::DrawGrid(), KIGFX::OPENGL_GAL::DrawGrid(), GetGridOrigin(), SetGridOrigin(), and SetGridSize().
|
protectedinherited |
The grid size.
Definition at line 1138 of file graphics_abstraction_layer.h.
Referenced by KIGFX::CAIRO_GAL_BASE::DrawGrid(), KIGFX::OPENGL_GAL::DrawGrid(), GetGridPoint(), GetGridSize(), GetVisibleGridSize(), SetGridOrigin(), and SetGridSize().
|
protectedinherited |
Grid display style.
Definition at line 1137 of file graphics_abstraction_layer.h.
Referenced by KIGFX::CAIRO_GAL_BASE::DrawGrid(), KIGFX::OPENGL_GAL::DrawGrid(), GAL(), GetVisibleGridSize(), and updatedGalDisplayOptions().
|
protectedinherited |
Every tick line gets the double width.
Definition at line 1144 of file graphics_abstraction_layer.h.
Referenced by KIGFX::CAIRO_GAL_BASE::DrawGrid(), KIGFX::OPENGL_GAL::DrawGrid(), GetVisibleGridSize(), and SetCoarseGrid().
|
protectedinherited |
Should the grid be shown.
Definition at line 1136 of file graphics_abstraction_layer.h.
Referenced by KIGFX::CAIRO_GAL_BASE::DrawGrid(), KIGFX::OPENGL_GAL::DrawGrid(), GetGridSnapping(), GetGridVisibility(), and SetGridVisibility().
|
private |
Counter used for generating keys for groups.
Definition at line 352 of file opengl_gal.h.
Referenced by getNewGroupNumber(), and OPENGL_GAL().
|
private |
Stores information about VBO objects (groups)
Definition at line 351 of file opengl_gal.h.
Referenced by BeginGroup(), ChangeGroupColor(), ChangeGroupDepth(), ClearCache(), DeleteGroup(), DrawGroup(), and getNewGroupNumber().
|
staticprivate |
GL GAL instance counter.
Definition at line 342 of file opengl_gal.h.
Referenced by OPENGL_GAL(), and ~OPENGL_GAL().
|
private |
Is the shader set to use bitmap fonts?
Definition at line 376 of file opengl_gal.h.
Referenced by BeginDrawing(), and OPENGL_GAL().
|
staticprivate |
Is the bitmap font texture loaded?
Definition at line 375 of file opengl_gal.h.
Referenced by BeginDrawing(), and ~OPENGL_GAL().
|
private |
Used for assertion checking.
Definition at line 380 of file opengl_gal.h.
Referenced by BeginDrawing(), beginUpdate(), EndDrawing(), init(), IsContextLocked(), LockContext(), OPENGL_GAL(), and UnlockContext().
|
protectedinherited |
Is the cursor enabled?
Definition at line 1150 of file graphics_abstraction_layer.h.
Referenced by getCursorColor(), IsCursorEnabled(), and SetCursorEnabled().
|
protectedinherited |
Is filling of graphic objects enabled ?
Definition at line 1125 of file graphics_abstraction_layer.h.
Referenced by KIGFX::CAIRO_GAL_BASE::DrawArc(), KIGFX::OPENGL_GAL::DrawArc(), KIGFX::CAIRO_GAL_BASE::DrawArcSegment(), KIGFX::OPENGL_GAL::DrawArcSegment(), KIGFX::OPENGL_GAL::drawCircle(), KIGFX::CAIRO_GAL_BASE::DrawGroup(), KIGFX::OPENGL_GAL::DrawHoleWall(), KIGFX::OPENGL_GAL::drawPolygon(), KIGFX::OPENGL_GAL::DrawRectangle(), KIGFX::CAIRO_GAL_BASE::DrawSegment(), KIGFX::OPENGL_GAL::drawSegment(), KIGFX::OPENGL_GAL::drawSegmentChain(), KIGFX::OPENGL_GAL::drawSemiCircle(), KIGFX::OPENGL_GAL::drawTriangulatedPolyset(), KIGFX::CAIRO_GAL_BASE::flushPath(), GetIsFill(), KIGFX::CAIRO_GAL_BASE::SetIsFill(), SetIsFill(), and KIGFX::CAIRO_GAL_BASE::storePath().
|
private |
Are the framebuffers initialized?
Definition at line 374 of file opengl_gal.h.
Referenced by BeginDrawing(), OPENGL_GAL(), ResizeScreen(), and updatedGalDisplayOptions().
|
private |
Was a group started?
Definition at line 379 of file opengl_gal.h.
Referenced by BeginGroup(), EndGroup(), and OPENGL_GAL().
|
private |
Basic initialization flag, has to be done when the window is visible.
Definition at line 377 of file opengl_gal.h.
Referenced by BeginDrawing(), beginUpdate(), ClearCache(), endUpdate(), init(), OPENGL_GAL(), and ~OPENGL_GAL().
|
protectedinherited |
Are the outlines stroked ?
Definition at line 1126 of file graphics_abstraction_layer.h.
Referenced by KIGFX::OPENGL_GAL::DrawArc(), KIGFX::CAIRO_GAL_BASE::DrawArcSegment(), KIGFX::OPENGL_GAL::DrawArcSegment(), KIGFX::OPENGL_GAL::drawCircle(), KIGFX::CAIRO_GAL_BASE::DrawGrid(), KIGFX::CAIRO_GAL_BASE::DrawGroup(), KIGFX::OPENGL_GAL::drawPolygon(), KIGFX::OPENGL_GAL::DrawRectangle(), KIGFX::OPENGL_GAL::drawSemiCircle(), KIGFX::OPENGL_GAL::drawTriangulatedPolyset(), KIGFX::CAIRO_GAL_BASE::flushPath(), GetIsStroke(), KIGFX::CAIRO_GAL_BASE::SetIsStroke(), SetIsStroke(), and KIGFX::CAIRO_GAL_BASE::storePath().
|
protectedinherited |
The actual layer depth.
Definition at line 1132 of file graphics_abstraction_layer.h.
Referenced by AdvanceDepth(), KIGFX::OPENGL_GAL::BitmapText(), KIGFX::OPENGL_GAL::DrawArc(), KIGFX::OPENGL_GAL::DrawBitmap(), KIGFX::OPENGL_GAL::drawCircle(), KIGFX::OPENGL_GAL::drawFilledSemiCircle(), KIGFX::OPENGL_GAL::DrawGlyph(), KIGFX::OPENGL_GAL::DrawGlyphs(), KIGFX::OPENGL_GAL::DrawHoleWall(), KIGFX::OPENGL_GAL::drawLineQuad(), KIGFX::OPENGL_GAL::DrawPolygon(), KIGFX::OPENGL_GAL::DrawPolygon(), KIGFX::OPENGL_GAL::DrawPolygon(), KIGFX::OPENGL_GAL::DrawRectangle(), KIGFX::OPENGL_GAL::drawStrokedSemiCircle(), KIGFX::OPENGL_GAL::drawTriangulatedPolyset(), getLayerDepth(), and SetLayerDepth().
|
protectedinherited |
The line width.
Definition at line 1122 of file graphics_abstraction_layer.h.
Referenced by KIGFX::CAIRO_GAL_BASE::CAIRO_GAL_BASE(), KIGFX::CAIRO_GAL_BASE::DrawArcSegment(), KIGFX::OPENGL_GAL::drawCircle(), KIGFX::OPENGL_GAL::drawLineQuad(), KIGFX::OPENGL_GAL::drawStrokedSemiCircle(), GetLineWidth(), KIGFX::CAIRO_GAL_BASE::resetContext(), KIGFX::CAIRO_GAL_BASE::SetLineWidth(), SetLineWidth(), and KIGFX::CAIRO_GAL_BASE::syncLineWidth().
|
private |
Definition at line 381 of file opengl_gal.h.
Referenced by LockContext(), OPENGL_GAL(), and UnlockContext().
|
protectedinherited |
Point to be looked at in world space.
Definition at line 1111 of file graphics_abstraction_layer.h.
Referenced by KIGFX::CAIRO_PRINT_GAL::ComputeWorldScreenMatrix(), ComputeWorldScreenMatrix(), KIGFX::OPENGL_GAL::ComputeWorldScreenMatrix(), GetLookAtPoint(), and SetLookAtPoint().
|
private |
Main rendering target.
Definition at line 364 of file opengl_gal.h.
Referenced by BeginDrawing(), ClearTarget(), DrawGrid(), EndDiffLayer(), EndDrawing(), and OPENGL_GAL().
|
protectedinherited |
Minimum line width in pixels.
Definition at line 1123 of file graphics_abstraction_layer.h.
Referenced by GetMinLineWidth(), and SetMinLineWidth().
|
private |
Definition at line 343 of file opengl_gal.h.
Referenced by OPENGL_GAL(), SetMouseListener(), skipGestureEvent(), and skipMouseEvent().
|
private |
Container for storing non-cached VERTEX_ITEMs.
Definition at line 356 of file opengl_gal.h.
Referenced by BeginDrawing(), DrawGrid(), EnableDepthTest(), EndDrawing(), init(), OPENGL_GAL(), SetTarget(), and ~OPENGL_GAL().
|
protectedinherited |
Definition at line 1104 of file graphics_abstraction_layer.h.
Referenced by GAL().
|
protectedinherited |
Definition at line 1103 of file graphics_abstraction_layer.h.
Referenced by GAL(), GetGridSnapping(), KIGFX::OPENGL_GAL::OPENGL_GAL(), KIGFX::CAIRO_GAL::setCompositor(), KIGFX::CAIRO_GAL::updatedGalDisplayOptions(), updatedGalDisplayOptions(), and KIGFX::OPENGL_GAL::updatedGalDisplayOptions().
|
private |
Auxiliary rendering target (for menus etc.)
Definition at line 365 of file opengl_gal.h.
Referenced by BeginDrawing(), ClearTarget(), EndDrawing(), HasTarget(), and OPENGL_GAL().
|
private |
Container for storing overlaid VERTEX_ITEMs.
Definition at line 357 of file opengl_gal.h.
Referenced by BeginDrawing(), EnableDepthTest(), EndDrawing(), init(), OPENGL_GAL(), SetTarget(), and ~OPENGL_GAL().
|
private |
Definition at line 344 of file opengl_gal.h.
Referenced by OPENGL_GAL(), PostPaint(), and SetPaintListener().
|
protectedinherited |
Rotation transformation (radians)
Definition at line 1114 of file graphics_abstraction_layer.h.
Referenced by ComputeWorldScreenMatrix(), GetRotation(), and SetRotation().
|
protectedinherited |
The dots per inch of the screen.
Definition at line 1110 of file graphics_abstraction_layer.h.
Referenced by computeWorldScale(), KIGFX::CAIRO_PRINT_GAL::ComputeWorldScreenMatrix(), GetScreenDPI(), SetScreenDPI(), and KIGFX::CAIRO_PRINT_GAL::SetSheetSize().
|
protectedinherited |
Screen size in screen (wx logical) coordinates.
Definition at line 1107 of file graphics_abstraction_layer.h.
Referenced by KIGFX::CAIRO_GAL::allocateBitmaps(), KIGFX::OPENGL_GAL::BeginDrawing(), KIGFX::CAIRO_GAL_BASE::blitCursor(), KIGFX::OPENGL_GAL::blitCursor(), KIGFX::CAIRO_GAL::CAIRO_GAL(), KIGFX::CAIRO_GAL_BASE::ClearScreen(), ComputeWorldScreenMatrix(), KIGFX::CAIRO_GAL_BASE::DrawGrid(), KIGFX::OPENGL_GAL::DrawGrid(), KIGFX::CAIRO_GAL::EndDrawing(), GetScreenPixelSize(), KIGFX::OPENGL_GAL::getScreenPixelSize(), GetVisibleWorldExtents(), KIGFX::CAIRO_GAL::initSurface(), KIGFX::OPENGL_GAL::OPENGL_GAL(), KIGFX::CAIRO_GAL_BASE::ResizeScreen(), KIGFX::OPENGL_GAL::ResizeScreen(), KIGFX::CAIRO_GAL::setCompositor(), and SetScreenSize().
|
protectedinherited |
Screen transformation.
Definition at line 1116 of file graphics_abstraction_layer.h.
Referenced by KIGFX::OPENGL_GAL::blitCursor(), KIGFX::CAIRO_PRINT_GAL::ComputeWorldScreenMatrix(), ComputeWorldScreenMatrix(), KIGFX::CAIRO_GAL_BASE::DrawGrid(), KIGFX::OPENGL_GAL::DrawGrid(), GetScreenWorldMatrix(), and ToWorld().
|
protectedinherited |
< Current VIEW_CONTROLS settings.
Definition at line 66 of file hidpi_gl_canvas.h.
Referenced by HIDPI_GL_CANVAS(), HIDPI_GL_3D_CANVAS::OnMouseMoveCamera(), HIDPI_GL_3D_CANVAS::OnMouseWheelCamera(), and SetVcSettings().
|
private |
There is only one shader used for different objects.
Definition at line 371 of file opengl_gal.h.
Referenced by BeginDrawing(), init(), OPENGL_GAL(), SetMinLineWidth(), setupShaderParameters(), and ~OPENGL_GAL().
|
protectedinherited |
The color of the outlines.
Definition at line 1129 of file graphics_abstraction_layer.h.
Referenced by KIGFX::OPENGL_GAL::BeginDrawing(), KIGFX::OPENGL_GAL::BitmapText(), KIGFX::OPENGL_GAL::DrawArc(), KIGFX::CAIRO_GAL_BASE::DrawArcSegment(), KIGFX::OPENGL_GAL::DrawArcSegment(), KIGFX::OPENGL_GAL::drawBitmapOverbar(), KIGFX::OPENGL_GAL::drawCircle(), KIGFX::CAIRO_GAL_BASE::DrawGroup(), KIGFX::OPENGL_GAL::DrawLine(), KIGFX::OPENGL_GAL::drawPolyline(), KIGFX::OPENGL_GAL::DrawRectangle(), KIGFX::CAIRO_GAL_BASE::DrawSegment(), KIGFX::OPENGL_GAL::drawSegment(), KIGFX::OPENGL_GAL::drawSegmentChain(), KIGFX::OPENGL_GAL::drawSemiCircle(), KIGFX::CAIRO_GAL_BASE::flushPath(), GetStrokeColor(), KIGFX::CAIRO_GAL_BASE::SetStrokeColor(), SetStrokeColor(), and KIGFX::CAIRO_GAL_BASE::storePath().
|
private |
Used to store swap interval information.
Definition at line 341 of file opengl_gal.h.
Referenced by GetSwapInterval(), init(), and OPENGL_GAL().
|
private |
Temporary rendering target (for diffing etc.)
Definition at line 366 of file opengl_gal.h.
Referenced by BeginDrawing(), ClearTarget(), EndDiffLayer(), HasTarget(), OPENGL_GAL(), and StartDiffLayer().
|
private |
Container for storing temp (diff mode) VERTEX_ITEMs.
Definition at line 360 of file opengl_gal.h.
Referenced by BeginDrawing(), init(), OPENGL_GAL(), SetTarget(), and ~OPENGL_GAL().
|
private |
Definition at line 396 of file opengl_gal.h.
Referenced by drawPolygon(), init(), OPENGL_GAL(), and ~OPENGL_GAL().
|
private |
Definition at line 397 of file opengl_gal.h.
Referenced by drawPolygon().
|
protectedinherited |
The scale factor world->screen.
Definition at line 1117 of file graphics_abstraction_layer.h.
Referenced by KIGFX::OPENGL_GAL::blitCursor(), computeWorldScale(), KIGFX::CAIRO_PRINT_GAL::ComputeWorldScreenMatrix(), ComputeWorldScreenMatrix(), KIGFX::OPENGL_GAL::ComputeWorldScreenMatrix(), KIGFX::CAIRO_GAL_BASE::DrawGrid(), GetVisibleGridSize(), and GetWorldScale().
|
protectedinherited |
World transformation.
Definition at line 1115 of file graphics_abstraction_layer.h.
Referenced by KIGFX::OPENGL_GAL::BeginDrawing(), KIGFX::CAIRO_PRINT_GAL::ComputeWorldScreenMatrix(), ComputeWorldScreenMatrix(), GetWorldScreenMatrix(), KIGFX::CAIRO_GAL_BASE::resetContext(), SetWorldScreenMatrix(), and ToScreen().
|
protectedinherited |
The unit length of the world coordinates [inch].
Definition at line 1109 of file graphics_abstraction_layer.h.
Referenced by computeWorldScale(), KIGFX::CAIRO_PRINT_GAL::ComputeWorldScreenMatrix(), KIGFX::CAIRO_GAL_BASE::DrawBitmap(), KIGFX::OPENGL_GAL::DrawBitmap(), and SetWorldUnitLength().
|
protectedinherited |
The zoom factor.
Definition at line 1113 of file graphics_abstraction_layer.h.
Referenced by computeWorldScale(), KIGFX::CAIRO_PRINT_GAL::ComputeWorldScreenMatrix(), GetZoomFactor(), and SetZoomFactor().
|
staticprotectedinherited |
Definition at line 1061 of file graphics_abstraction_layer.h.
Referenced by GAL().
|
staticprotectedinherited |
Possible depth range.
Definition at line 1060 of file graphics_abstraction_layer.h.
Referenced by GAL().
|
private |
Definition at line 385 of file opengl_gal.h.
Referenced by BeginDrawing(), OPENGL_GAL(), and setupShaderParameters().
|
private |
Definition at line 387 of file opengl_gal.h.
Referenced by BeginDrawing(), OPENGL_GAL(), and setupShaderParameters().
|
private |
Definition at line 388 of file opengl_gal.h.
Referenced by BeginDrawing(), OPENGL_GAL(), and setupShaderParameters().
|
private |
Definition at line 386 of file opengl_gal.h.
Referenced by BeginDrawing(), OPENGL_GAL(), SetMinLineWidth(), and setupShaderParameters().
|
private |
Definition at line 384 of file opengl_gal.h.
Referenced by BeginDrawing(), OPENGL_GAL(), and setupShaderParameters().
|
private |
Definition at line 383 of file opengl_gal.h.
Referenced by BeginDrawing(), OPENGL_GAL(), and setupShaderParameters().
|
private |
Definition at line 382 of file opengl_gal.h.
Referenced by BeginDrawing(), OPENGL_GAL(), and setupShaderParameters().