e70152e44cc66cc599ff6b699eb8adc07f3e656a kent Sat May 24 21:09:34 2014 -0700 Adding Copyright NNNN Regents of the University of California to all files I believe with reasonable certainty were developed under UCSC employ or as part of Genome Browser copyright assignment. diff --git src/lib/vGfxPrivate.h src/lib/vGfxPrivate.h index 5fd456a..242e3ea 100644 --- src/lib/vGfxPrivate.h +++ src/lib/vGfxPrivate.h @@ -1,18 +1,21 @@ /* vGfx private - stuff that the implementers of * a vGfx need to know about, but not the clients. */ +/* Copyright (C) 2010 The Regents of the University of California + * See README in this or parent directory for licensing information. */ + struct vGfx *vgHalfInit(int width, int height); /* Return a partially initialized vGfx structure. * Generally not called by clients.*/ void vgMgMethods(struct vGfx *vg); /* Fill in virtual graphics methods for memory based drawing. */ /* A bunch of things to make the type-casting easier. * This is a price you pay for object oriented * polymorphism in C... */ typedef void (*vg_close)(void **pV); typedef void (*vg_dot)(void *v, int x, int y, int colorIx); typedef int (*vg_getDot)(void *v, int x, int y);