Mercurial > hgrepos > Python2 > PyMuPDF
view mupdf-source/thirdparty/freeglut/src/android/fg_state_android.c @ 7:5ab937c03c27
Apply full RELRO to all generated binaries.
Also strip the generated binaries.
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Tue, 16 Sep 2025 12:37:32 +0200 |
| parents | b50eed0cc0ef |
| children |
line wrap: on
line source
/* * fg_state_android.c * * Android-specific freeglut state query methods. * * Copyright (c) 2012 Stephen J. Baker. All Rights Reserved. * Written by John F. Fay, <fayjf@sourceforge.net> * Copyright (C) 2012 Sylvain Beucler * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * PAWEL W. OLSZTA BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include <GL/freeglut.h> #include <stdio.h> #include <android/native_window.h> #include "fg_internal.h" #include "egl/fg_state_egl.h" int fgPlatformGlutDeviceGet ( GLenum eWhat ) { switch( eWhat ) { case GLUT_HAS_KEYBOARD: /* Android has a keyboard, though it may be virtual. */ return 1; case GLUT_HAS_MOUSE: /* Android has a touchscreen; until we get proper touchscreen support, consider it as a mouse. */ return 1 ; case GLUT_NUM_MOUSE_BUTTONS: /* Android has a touchscreen; until we get proper touchscreen support, consider it as a 1-button mouse. */ return 1; default: fgWarning( "glutDeviceGet(): missing enum handle %d", eWhat ); break; } /* And now -- the failure. */ return -1; } int fgPlatformGlutGet ( GLenum eWhat ) { switch (eWhat) { /* One full-screen window only */ case GLUT_WINDOW_X: case GLUT_WINDOW_Y: case GLUT_WINDOW_BORDER_WIDTH: case GLUT_WINDOW_HEADER_HEIGHT: return 0; case GLUT_WINDOW_WIDTH: case GLUT_WINDOW_HEIGHT: { if ( fgStructure.CurrentWindow == NULL ) return 0; int32_t width = ANativeWindow_getWidth(fgStructure.CurrentWindow->Window.Handle); int32_t height = ANativeWindow_getHeight(fgStructure.CurrentWindow->Window.Handle); switch ( eWhat ) { case GLUT_WINDOW_WIDTH: return width; case GLUT_WINDOW_HEIGHT: return height; } } case GLUT_WINDOW_COLORMAP_SIZE: /* 0 for RGBA/non-indexed mode */ /* Under Android and GLES more generally, no indexed-mode */ return 0; default: return fghPlatformGlutGetEGL(eWhat); } return -1; }
