diff options
author | marha <marha@users.sourceforge.net> | 2013-09-23 09:41:49 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2013-09-23 09:41:49 +0200 |
commit | e4d5a2996e4a03f55bc7d21c493ba1bcbef35aae (patch) | |
tree | ee54f228a08b4d042e73cf9e6247ffbc9af3b73f /mesalib/src/mesa/program | |
parent | 55c05b8a12944349b00053253d3a49b223a9f4de (diff) | |
download | vcxsrv-e4d5a2996e4a03f55bc7d21c493ba1bcbef35aae.tar.gz vcxsrv-e4d5a2996e4a03f55bc7d21c493ba1bcbef35aae.tar.bz2 vcxsrv-e4d5a2996e4a03f55bc7d21c493ba1bcbef35aae.zip |
mesa xserver git update 23 Sep 2013
xserver commit 7d3d4ae55dd6ee338439e2424ac423b1df80501b
mesa commit 6d29db715b8d60718ada1ab8ad19d969cac43caf
Diffstat (limited to 'mesalib/src/mesa/program')
-rw-r--r-- | mesalib/src/mesa/program/ir_to_mesa.cpp | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/mesalib/src/mesa/program/ir_to_mesa.cpp b/mesalib/src/mesa/program/ir_to_mesa.cpp index cef32dc07..c46a3d005 100644 --- a/mesalib/src/mesa/program/ir_to_mesa.cpp +++ b/mesalib/src/mesa/program/ir_to_mesa.cpp @@ -149,17 +149,7 @@ dst_reg::dst_reg(src_reg reg) class ir_to_mesa_instruction : public exec_node { public: - /* Callers of this ralloc-based new need not call delete. It's - * easier to just ralloc_free 'ctx' (or any of its ancestors). */ - static void* operator new(size_t size, void *ctx) - { - void *node; - - node = rzalloc_size(ctx, size); - assert(node != NULL); - - return node; - } + DECLARE_RZALLOC_CXX_OPERATORS(ir_to_mesa_instruction) enum prog_opcode op; dst_reg dst; |