Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

41 строка
688 B

  1. //
  2. // Lol Engine
  3. //
  4. // Copyright: (c) 2010-2013 Sam Hocevar <sam@hocevar.net>
  5. // This program is free software; you can redistribute it and/or
  6. // modify it under the terms of the Do What The Fuck You Want To
  7. // Public License, Version 2, as published by Sam Hocevar. See
  8. // http://www.wtfpl.net/ for more details.
  9. //
  10. //
  11. // The LolFx class
  12. // ---------------
  13. //
  14. #include <lol/engine-internal.h>
  15. namespace lol
  16. {
  17. LolFx::LolFx()
  18. : m_blend(false),
  19. m_alphatest(false),
  20. m_cullface(false),
  21. m_depthtest(false),
  22. m_depthmask(false),
  23. m_shader(0)
  24. {
  25. ;
  26. }
  27. bool LolFx::Compile(char const *command)
  28. {
  29. UNUSED(command);
  30. return false;
  31. }
  32. } /* namespace lol */