summaryrefslogtreecommitdiff
path: root/src/render
AgeCommit message (Collapse)AuthorFilesLines
2015-12-09Rename "Mobile OpenGL" into "Mobile OpenGL ES".Andrei Karas3-5/+5
2015-12-02Fix getprocaddress in nacl.Andrei Karas1-1/+1
2015-12-01Fix compilation nacl with OpenGL (regal).Andrei Karas7-0/+16
2015-11-02Add some missing checks in renderers.Andrei Karas5-0/+10
2015-08-22Use resource manager as global variable.Andrei Karas1-3/+2
2015-08-09Show error message in log if selected texture compression not supported.Andrei Karas1-0/+1
2015-08-09Add some missing checks to render found by paranucker.Andrei Karas6-14/+14
2015-06-25Add missing checks into render directory.Andrei Karas9-13/+113
2015-05-31Move blitmode enum into separate file.Andrei Karas2-12/+8
2015-05-25Remove color2 from graphics.Andrei Karas5-37/+1
2015-05-17Fix code style.Andrei Karas2-4/+0
2015-05-13Remove duplicate function from graphics.Andrei Karas2-16/+0
2015-05-13New stack class in graphics areas stack.Andrei Karas2-16/+20
2015-04-26Use cilkplus in sdlgraphics.Andrei Karas1-11/+10
2015-04-02Remove useless virtual keywords.Andrei Karas1-1/+1
2015-03-23Fix leak on exit in modernopenglgraphics.Andrei Karas1-2/+2
2015-03-17Remove useless includes from .h files.Andrei Karas11-17/+7
2015-03-16Remove useless includes from cpp filesAndrei Karas7-13/+7
2015-02-18Add missing override keywords.Andrei Karas4-8/+8
2015-01-13Move rendertype.h into enums directory.Andrei Karas3-39/+3
2015-01-01Update copyrights year.Andrei Karas56-56/+56
2014-08-18Add bptc texture compression support.Andrei Karas1-0/+4
Add workaround for MESA for using bptc.
2014-08-11Fix mplint warnings.Andrei Karas2-0/+3
2014-08-10Simplify GLX functions defenition.Andrei Karas3-19/+31
2014-08-10Simplify OpenGL functions defenition.Andrei Karas3-178/+112
2014-08-10Add support for OpenGL extension GL_ARB_clear_texture.Andrei Karas3-0/+9
2014-08-03Fix some casts.Andrei Karas1-2/+2
2014-08-02Add missing glx defines.v1.4.8.2Andrei Karas1-0/+6
2014-07-18Move renderer method createGLContext from protected into public.Andrei Karas2-5/+6
2014-07-17Add GLX_CONTEXT_PROFILE_MASK_ARB into OpenGL defines.Andrei Karas1-0/+4
2014-07-14Fix code style.Andrei Karas1-0/+12
2014-07-12Add macro for checking OpenGL function is it null or not null.Andrei Karas5-4/+35
2014-07-12Add functions to get ARB or EXT OpenGL functions.Andrei Karas2-7/+29
2014-07-12Simplify assignFunction and add two args function assignFunction2.Andrei Karas2-9/+18
2014-07-12Fix logging about emulated OpenGL functions.Andrei Karas1-1/+1
2014-07-10In OpenGL context creation add support for compatability context.Andrei Karas1-1/+1
2014-07-09Improve initial OpenGL state.Andrei Karas7-45/+43
Moved shared code into separate method.
2014-07-05Fix code style.Andrei Karas4-20/+23
2014-07-02Add basic support for functions from OpenGL extension ↵Andrei Karas6-0/+99
GL_EXT_direct_state_access.
2014-07-02Rename some variables in renderers.Andrei Karas7-61/+61
2014-07-02Fix resize in modernopengl with own context in SDL1.2 build.Andrei Karas4-6/+28
2014-07-02Fix compilation error with SDL2.Andrei Karas1-2/+1
2014-06-29Remove useless bool return value from renderers.Andrei Karas16-223/+163
2014-06-29Add imagegraphics for drawing into texture/image.Andrei Karas2-0/+275
For now it empty.
2014-06-29In renderers add copyImage function.Andrei Karas12-0/+85
For now it same with drawImage.
2014-06-29Fix compilation warning.Andrei Karas1-1/+2
2014-06-28Remove some depricated code from modernopengl or move it to renderers.Andrei Karas3-9/+1
2014-06-28Improve a bit performance test in modernopengl.Andrei Karas1-5/+7
2014-06-24Add glXSwapBuffers into GLX functions.Andrei Karas4-0/+4
2014-06-24Add manual OpenGL context creation.Andrei Karas8-6/+47
For SDL2 set attributes for context version. For SDL1.2 in X11 create own context. For SDL1.2 and other platforms not implimented for now. Also try fallback if need to older context versions.