1. 0aa3b5a Implement user-defined name hashing. by daniel@transgaming.com · 12 years ago
  2. c23f461 Interface design for user-defined name hashing. by daniel@transgaming.com · 12 years ago
  3. 8d80479 Add Variable Packing checks to ANGLE by gman@chromium.org · 12 years ago
  4. 3ce8dbc Add placeholder entry points for GL_OES_get_program_binary. by apatrick@chromium.org · 12 years ago
  5. 430f5e0 Add the SH_CSS_SHADERS_SPEC flag. by maxvujovic@gmail.com · 12 years ago
  6. 66ebd01 Add the SH_TIMING_RESTRICTIONS compile flag and dependency graph implementation. by maxvujovic@gmail.com · 12 years ago
  7. d2820bf Add entry points and constants for GL_ANGLE_instanced_arrays. by daniel@transgaming.com · 13 years ago
  8. 6575602 Finished off the GLSL compiler's support for parsing shaders using OES_EGL_image_external. by apatrick@chromium.org · 13 years ago
  9. 8983cbc Refresh EGL/eglext.h from Khronos by daniel@transgaming.com · 13 years ago
  10. 35be8c1 Refresh GLES2/gl2ext.h from Khronos by daniel@transgaming.com · 13 years ago
  11. 56d46ab Add GL_ANGLE_pack_reverse_row_order. Performs vertical flip in readPixels and by bsalomon@google.com · 13 years ago
  12. 205fef3 Added support for GL_ARB_texture_rectangle to shader validator. by kbr@chromium.org · 13 years ago
  13. afaa049 Upstream android's change for angle by michaelbai@google.com · 13 years ago
  14. 43911ec Add new function prototypes to gl2ext.h by daniel@transgaming.com · 13 years ago
  15. 7d18c17 Added the texture usage parameter. by daniel@transgaming.com · 13 years ago
  16. ff941aa Added support for floating-point and BGRA storage textures. by daniel@transgaming.com · 13 years ago
  17. 64a0fb2 Implemented glTexStorage2DEXT. by daniel@transgaming.com · 13 years ago
  18. d30bd0a Added the immutable parameter. by daniel@transgaming.com · 13 years ago
  19. 4ff960d Implemented context creation with reset notification. by daniel@transgaming.com · 13 years ago
  20. 17f548c Implemented reset status. by daniel@transgaming.com · 13 years ago
  21. 22eab92 Allowed translator_hlsl and glsl to be built as shared libs on windows. by apatrick@chromium.org · 13 years ago
  22. 50297fc Assign proper enum to GL_TRANSLATED_SHADER_SOURCE_LENGTH_ANGLE by daniel@transgaming.com · 13 years ago
  23. a574f78 Add an extension for querying translated HLSL shader source. by zmo@google.com · 13 years ago
  24. 32e9731 Emulate certain buil-in functions to work around driver bugs. by zmo@google.com · 13 years ago
  25. 0c6bb7a Add an compile option to unroll for-loops with integer indices. by zmo@google.com · 13 years ago
  26. 09c323a Add an option to support for GL_OES_EGL_image_external. by zmo@google.com · 13 years ago
  27. 50c526d Add support for DXT3 and DXT5 by gman@chromium.org · 13 years ago
  28. bb1d171 Add Wayland typedefs to eglplatform.h by daniel@transgaming.com · 13 years ago
  29. 8518910 Refresh EGL and GLES2 headers from Khronos registry by daniel@transgaming.com · 13 years ago
  30. 84d7cbc Add extension to create software device. by jbauman@chromium.org · 13 years ago
  31. 5601ea0 Implement ES2 backend for Angle translator. by zmo@google.com · 13 years ago
  32. fd747b8 Implement shader identifier name mapping. by zmo@google.com · 13 years ago
  33. 721b7f2 Issue=91 -- implement pbuffers in ANGLE; add D3D share handle support by vladimirv@gmail.com · 14 years ago
  34. e41afd8 fix pedantic compiler warnings Issue=108 by daniel@transgaming.com · 14 years ago
  35. 0f4cefe Map D3D calls and HLSL shaders back to GLES2 calls and GLSL ES shaders in PIX. by apatrick@chromium.org · 14 years ago
  36. b59a778 Implemented validation for loop and indexing limitations specified by GLSL ES spec 1.0 Appendix A Section 4 and 5. by alokp@chromium.org · 14 years ago
  37. 1f29954 Added API to enforce GLSL limitations mandated by WebGL. by alokp@chromium.org · 14 years ago
  38. 4888ceb Made the API of shader translator library consistent. by alokp@chromium.org · 14 years ago
  39. 2fa7369 Added version number for shader translator API. by alokp@chromium.org · 14 years ago
  40. ee76f6a Implemented functionality to collect and return info for attributes and uniforms. by alokp@chromium.org · 14 years ago
  41. 7beea40 Added API to query for active attribs and uniforms. These functions are modeled after glGetShaderiv, glGetProgramiv, glGetActiveAttrib, and glGetActiveUniform. The main difference between this and OpenGL API is that we do not have programs - just shaders. by alokp@chromium.org · 14 years ago
  42. 94a86ad Adding support for OES_standard_derivatives extension. This is not the complete implementation. Sending it to get feedback on the API. Is it OK to add extension support into TBuiltInResource? I could create a new struct for extensions but that would lead to API change. by alokp@chromium.org · 14 years ago
  43. 0186813 Implements compressed textures. TRAC #12714 Signed-off-by: Daniel Koch by daniel@transgaming.com · 14 years ago
  44. 1f135d8 Implements glRenderbufferMultisampleStorage by daniel@transgaming.com · 14 years ago
  45. 4cbc590 Implements blitFramebuffer by daniel@transgaming.com · 14 years ago
  46. a27ff1e Creates separate bind points for read & write framebuffers. by daniel@transgaming.com · 14 years ago
  47. b399934 Added comment about return values of ShInitialize() and ShFinalize(). by alokp@chromium.org · 14 years ago
  48. e4249f0 Refactored the way symbol tables are initialized and stored. This was done in response to the addition of EShSpec. by alokp@chromium.org · 14 years ago
  49. c54bf50 Further cleanup of ShaderLang.h. Removed redundant/unused macros and enum fields. by alokp@chromium.org · 14 years ago
  50. 774d706 Cleaned up translator API. Deleted unsupported dead code. by alokp@chromium.org · 14 years ago
  51. 29cd91a Added an option for specifying language specification in preparation for supporting WebGL in addition to GLES2. This CL just replaces unused debugOptions variable with EShSpec variable. by alokp@chromium.org · 14 years ago
  52. 12d3803 Remove GLES2/glextimg.h by daniel@transgaming.com · 14 years ago
  53. 0469406 Refresh KHR headers from Khronos svn@10929 by daniel@transgaming.com · 14 years ago
  54. c68e929 Refresh GLES2 header files from Khronos svn@10929 by daniel@transgaming.com · 14 years ago
  55. fe110ab Refresh EGL files from Khronos svn@10929 by daniel@transgaming.com · 14 years ago
  56. ea0e1af Minor reshuffling of directory structure in preparation of ESSL to GLSL compiler work. by alokp@chromium.org · 14 years ago
  57. f086669 mv Include -> include Trac #11406 Signed-off-by: Nicolas Capens by daniel@transgaming.com · 14 years ago[Renamed from Include]
  58. b5462fc mv Include/*.h -> /src/include/ Trac #11406 Signed-off-by: Nicolas Capens by daniel@transgaming.com · 14 years ago
  59. 0009d62 Creates new depthstencils for surfaces. by daniel@transgaming.com · 15 years ago
  60. 12d5407 Handle sampling from incomplete textures by daniel@transgaming.com · 15 years ago
  61. 416485f Select texture type based on program usage. by daniel@transgaming.com · 15 years ago
  62. 0f7aaf5 Add support for Vertex Buffer Data Translation by daniel@transgaming.com · 15 years ago
  63. fab5a1a Remove trailing whitespace. by daniel@transgaming.com · 15 years ago
  64. 4f39fd9 Initial import from TransGaming by daniel@transgaming.com · 15 years ago