src/java.desktop/share/native/common/java2d/opengl/OGLRenderQueue.c
branchihse-warnings-cflags-branch
changeset 56230 489867818774
parent 47216 71c04702a3d5
equal deleted inserted replaced
56229:0015bf3a82e0 56230:489867818774
   715 /**
   715 /**
   716  * Returns a pointer to the "current" context, as set by the last SET_SURFACES
   716  * Returns a pointer to the "current" context, as set by the last SET_SURFACES
   717  * or SET_SCRATCH_SURFACE operation.
   717  * or SET_SCRATCH_SURFACE operation.
   718  */
   718  */
   719 OGLContext *
   719 OGLContext *
   720 OGLRenderQueue_GetCurrentContext()
   720 OGLRenderQueue_GetCurrentContext(void)
   721 {
   721 {
   722     return oglc;
   722     return oglc;
   723 }
   723 }
   724 
   724 
   725 /**
   725 /**
   726  * Returns a pointer to the "current" destination surface, as set by the last
   726  * Returns a pointer to the "current" destination surface, as set by the last
   727  * SET_SURFACES operation.
   727  * SET_SURFACES operation.
   728  */
   728  */
   729 OGLSDOps *
   729 OGLSDOps *
   730 OGLRenderQueue_GetCurrentDestination()
   730 OGLRenderQueue_GetCurrentDestination(void)
   731 {
   731 {
   732     return dstOps;
   732     return dstOps;
   733 }
   733 }
   734 
   734 
   735 /**
   735 /**