Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(515)

Issue 14907017: add SkLuaCanvas (Closed)

Created:
7 years, 7 months ago by reed1
Modified:
7 years, 7 months ago
Reviewers:
bungeman-skia
CC:
skia-review_googlegroups.com
Visibility:
Public.

Description

add SkLuaCanvas add lua 5.2 to third_party BUG= R=bungeman@google.com Committed: https://code.google.com/p/skia/source/detail?r=9149

Patch Set 1 #

Patch Set 2 : #

Patch Set 3 : #

Patch Set 4 : #

Patch Set 5 : #

Patch Set 6 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+32802 lines, -31 lines) Patch
A gyp/lua.gyp View 1 2 3 4 5 1 chunk +68 lines, -0 lines 0 comments Download
M gyp/tools.gyp View 1 2 3 4 5 2 chunks +20 lines, -0 lines 0 comments Download
A + include/utils/SkLuaCanvas.h View 1 2 3 4 5 3 chunks +23 lines, -31 lines 0 comments Download
A src/utils/SkLuaCanvas.cpp View 1 2 3 4 5 1 chunk +192 lines, -0 lines 0 comments Download
A third_party/lua/Makefile View 1 2 3 4 5 1 chunk +114 lines, -0 lines 0 comments Download
A third_party/lua/README View 1 2 3 4 5 1 chunk +6 lines, -0 lines 0 comments Download
A third_party/lua/doc/contents.html View 1 2 3 4 5 1 chunk +533 lines, -0 lines 0 comments Download
A third_party/lua/doc/logo.gif View 1 2 3 4 5 Binary file 0 comments Download
A third_party/lua/doc/lua.1 View 1 2 3 4 5 1 chunk +116 lines, -0 lines 0 comments Download
A third_party/lua/doc/lua.css View 1 2 3 4 5 1 chunk +83 lines, -0 lines 0 comments Download
A third_party/lua/doc/luac.1 View 1 2 3 4 5 1 chunk +118 lines, -0 lines 0 comments Download
A third_party/lua/doc/manual.css View 1 2 3 4 5 1 chunk +26 lines, -0 lines 0 comments Download
A third_party/lua/doc/manual.html View 1 2 3 4 5 1 chunk +10507 lines, -0 lines 0 comments Download
A third_party/lua/doc/osi-certified-72x60.png View 1 2 3 4 5 Binary file 0 comments Download
A third_party/lua/doc/readme.html View 1 2 3 4 5 1 chunk +412 lines, -0 lines 0 comments Download
A third_party/lua/src/Makefile View 1 2 3 4 5 1 chunk +187 lines, -0 lines 0 comments Download
A third_party/lua/src/lapi.h View 1 2 3 4 5 1 chunk +24 lines, -0 lines 0 comments Download
A third_party/lua/src/lapi.c View 1 2 3 4 5 1 chunk +1284 lines, -0 lines 0 comments Download
A third_party/lua/src/lauxlib.h View 1 2 3 4 5 1 chunk +212 lines, -0 lines 0 comments Download
A third_party/lua/src/lauxlib.c View 1 2 3 4 5 1 chunk +959 lines, -0 lines 0 comments Download
A third_party/lua/src/lbaselib.c View 1 2 3 4 5 1 chunk +458 lines, -0 lines 0 comments Download
A third_party/lua/src/lbitlib.c View 1 2 3 4 5 1 chunk +211 lines, -0 lines 0 comments Download
A third_party/lua/src/lcode.h View 1 2 3 4 5 1 chunk +83 lines, -0 lines 0 comments Download
A third_party/lua/src/lcode.c View 1 2 3 4 5 1 chunk +881 lines, -0 lines 0 comments Download
A third_party/lua/src/lcorolib.c View 1 2 3 4 5 1 chunk +155 lines, -0 lines 0 comments Download
A third_party/lua/src/lctype.h View 1 2 3 4 5 1 chunk +95 lines, -0 lines 0 comments Download
A third_party/lua/src/lctype.c View 1 2 3 4 5 1 chunk +52 lines, -0 lines 0 comments Download
A third_party/lua/src/ldblib.c View 1 2 3 4 5 1 chunk +398 lines, -0 lines 0 comments Download
A third_party/lua/src/ldebug.h View 1 2 3 4 5 1 chunk +34 lines, -0 lines 0 comments Download
A third_party/lua/src/ldebug.c View 1 2 3 4 5 1 chunk +580 lines, -0 lines 0 comments Download
A third_party/lua/src/ldo.h View 1 2 3 4 5 1 chunk +46 lines, -0 lines 0 comments Download
A third_party/lua/src/ldo.c View 1 2 3 4 5 1 chunk +673 lines, -0 lines 0 comments Download
A third_party/lua/src/ldump.c View 1 2 3 4 5 1 chunk +173 lines, -0 lines 0 comments Download
A third_party/lua/src/lfunc.h View 1 2 3 4 5 1 chunk +33 lines, -0 lines 0 comments Download
A third_party/lua/src/lfunc.c View 1 2 3 4 5 1 chunk +161 lines, -0 lines 0 comments Download
A third_party/lua/src/lgc.h View 1 2 3 4 5 1 chunk +157 lines, -0 lines 0 comments Download
A third_party/lua/src/lgc.c View 1 2 3 4 5 1 chunk +1213 lines, -0 lines 0 comments Download
A third_party/lua/src/linit.c View 1 2 3 4 5 1 chunk +67 lines, -0 lines 0 comments Download
A third_party/lua/src/liolib.c View 1 2 3 4 5 1 chunk +665 lines, -0 lines 0 comments Download
A third_party/lua/src/llex.h View 1 2 3 4 5 1 chunk +78 lines, -0 lines 0 comments Download
A third_party/lua/src/llex.c View 1 2 3 4 5 1 chunk +527 lines, -0 lines 0 comments Download
A third_party/lua/src/llimits.h View 1 2 3 4 5 1 chunk +309 lines, -0 lines 0 comments Download
A third_party/lua/src/lmathlib.c View 1 2 3 4 5 1 chunk +279 lines, -0 lines 0 comments Download
A third_party/lua/src/lmem.h View 1 2 3 4 5 1 chunk +57 lines, -0 lines 0 comments Download
A third_party/lua/src/lmem.c View 1 2 3 4 5 1 chunk +99 lines, -0 lines 0 comments Download
A third_party/lua/src/loadlib.c View 1 2 3 4 5 1 chunk +725 lines, -0 lines 0 comments Download
A third_party/lua/src/lobject.h View 1 2 3 4 5 1 chunk +607 lines, -0 lines 0 comments Download
A third_party/lua/src/lobject.c View 1 2 3 4 5 1 chunk +287 lines, -0 lines 0 comments Download
A third_party/lua/src/lopcodes.h View 1 2 3 4 5 1 chunk +288 lines, -0 lines 0 comments Download
A third_party/lua/src/lopcodes.c View 1 2 3 4 5 1 chunk +107 lines, -0 lines 0 comments Download
A third_party/lua/src/loslib.c View 1 2 3 4 5 1 chunk +323 lines, -0 lines 0 comments Download
A third_party/lua/src/lparser.h View 1 2 3 4 5 1 chunk +119 lines, -0 lines 0 comments Download
A third_party/lua/src/lparser.c View 1 2 3 4 5 1 chunk +1638 lines, -0 lines 0 comments Download
A third_party/lua/src/lstate.h View 1 2 3 4 5 1 chunk +228 lines, -0 lines 0 comments Download
A third_party/lua/src/lstate.c View 1 2 3 4 5 1 chunk +322 lines, -0 lines 0 comments Download
A third_party/lua/src/lstring.h View 1 2 3 4 5 1 chunk +46 lines, -0 lines 0 comments Download
A third_party/lua/src/lstring.c View 1 2 3 4 5 1 chunk +185 lines, -0 lines 0 comments Download
A third_party/lua/src/lstrlib.c View 1 2 3 4 5 1 chunk +1019 lines, -0 lines 0 comments Download
A third_party/lua/src/ltable.h View 1 2 3 4 5 1 chunk +41 lines, -0 lines 0 comments Download
A third_party/lua/src/ltable.c View 1 2 3 4 5 1 chunk +588 lines, -0 lines 0 comments Download
A third_party/lua/src/ltablib.c View 1 2 3 4 5 1 chunk +283 lines, -0 lines 0 comments Download
A third_party/lua/src/ltm.h View 1 2 3 4 5 1 chunk +57 lines, -0 lines 0 comments Download
A third_party/lua/src/ltm.c View 1 2 3 4 5 1 chunk +77 lines, -0 lines 0 comments Download
A third_party/lua/src/lua.h View 1 2 3 4 5 1 chunk +444 lines, -0 lines 0 comments Download
A third_party/lua/src/lua.hpp View 1 2 3 4 5 1 chunk +9 lines, -0 lines 0 comments Download
A third_party/lua/src/lua.c View 1 2 3 4 5 1 chunk +497 lines, -0 lines 0 comments Download
A third_party/lua/src/luac.c View 1 2 3 4 5 1 chunk +432 lines, -0 lines 0 comments Download
A third_party/lua/src/luaconf.h View 1 2 3 4 5 1 chunk +551 lines, -0 lines 0 comments Download
A third_party/lua/src/lualib.h View 1 2 3 4 5 1 chunk +55 lines, -0 lines 0 comments Download
A third_party/lua/src/lundump.h View 1 2 3 4 5 1 chunk +28 lines, -0 lines 0 comments Download
A third_party/lua/src/lundump.c View 1 2 3 4 5 1 chunk +258 lines, -0 lines 0 comments Download
A third_party/lua/src/lvm.h View 1 2 3 4 5 1 chunk +44 lines, -0 lines 0 comments Download
A third_party/lua/src/lvm.c View 1 2 3 4 5 1 chunk +867 lines, -0 lines 0 comments Download
A third_party/lua/src/lzio.h View 1 2 3 4 5 1 chunk +65 lines, -0 lines 0 comments Download
A third_party/lua/src/lzio.c View 1 2 3 4 5 1 chunk +76 lines, -0 lines 0 comments Download
A tools/lua/lua_pictures.cpp View 1 2 3 4 5 1 chunk +153 lines, -0 lines 0 comments Download
A tools/lua/scrape.lua View 1 2 3 4 5 1 chunk +15 lines, -0 lines 0 comments Download

Messages

Total messages: 3 (0 generated)
reed1
7 years, 7 months ago (2013-05-14 21:36:45 UTC) #1
bungeman-skia
Any chance of moving tools/lua_pictures.cpp tools/scrape.lua to a new tools/lua directory? The tools directory is ...
7 years, 7 months ago (2013-05-15 19:04:09 UTC) #2
reed1
7 years, 7 months ago (2013-05-15 19:34:40 UTC) #3
Message was sent while issue was closed.
Committed patchset #6 manually as r9149 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698