| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2003-11-08 | For the rasops-drawn cursor the fg/bg indices are bit inverted, so | uwe | |
| provide complimentary colors in the upper 16 entries. | |||
| 2003-05-03 | In rasops_copycols change bcopy to memmove. In that particular place | uwe | |
| the src and dst are very likely to overlap, so using bcopy causes garbage to be displayed | |||
| 2003-04-16 | rasops32_putchar: don't paint character out of font limits. | petrov | |
| 2002-09-27 | remove trailing \n in panic(). approved perry. | provos | |
| 2002-09-05 | compiler warning. | petrov | |
| 2002-07-04 | Rename rasops_alloc_cattr and rasops_alloc_mattr to | junyoung | |
| rasops_allocattr_color and rasops_allocattr_mono, respectively. | |||
| 2002-07-04 | alloc_attr -> allocattr | junyoung | |
| Approved by Matthias Drochner. | |||
| 2002-05-31 | Avoid sequence point error. | thorpej | |
| 2002-03-13 | Reorganise the wsfont stuff slightly so that multiple display adapters | ad | |
| with different bit/byte order requirements can co-exist happily. | |||
| 2002-02-11 | Undo previous that incorrectly byte-swaps stamps for little endian | uwe | |
| machines when RI_BSWAP is *not* set. Redo my original fix to directly build stamps in desired endianness instead of calling bswap32(). | |||
| 2002-02-08 | | Module Name: syssrc | uch | |
| | Committed By: uwe | Date: Thu Jan 31 11:18:08 UTC 2002 | | Modified Files: | syssrc/sys/dev/rasops: rasops8.c | | Log Message: | Honor RI_BSWAP. Endian fix. | |||
| 2002-01-31 | Honor RI_BSWAP. | uwe | |
| 2001-11-28 | - convert usage of "defopt" to "defflag" where the relevant option does | lukem | |
| not support a value (e.g., it's to be used as "options FOO" instead of "options FOO=xxx"). options that take a value were converted to defparam recently. - minor whitespace & formatting cleanups | |||
| 2001-11-15 | don't need <sys/types.h> when including <sys/param.h> | lukem | |
| 2001-11-13 | add/cleanup RCSIDs | lukem | |
| 2001-09-18 | Give initiali[sz]e all the "i"s it deserves. | wiz | |
| 2001-08-10 | Adjust #ifdefs so RASOPS_SMALL doesn't give "defined but not used" warnings. | bjh21 | |
| 2001-04-11 | Only install headers which are actually used by our userland. This | jdolecek | |
| saves about 2.2MB under /usr/include/dev/. Discussed on tech-kern@ recently. I HOPE to get the list right. The headers I left in are ones used for MI tools and those whose usage I discovered by grep over tree sources. Feel free to put needed includes back in if you encounter anything which should not be removed from lists. | |||
| 2001-02-15 | rasops4.c depend on rasops_masks.c | sato | |
| 2001-02-12 | Correct the ri_xorigin calculation for the RI_CENTER case again. | nathanw | |
| Original calculation (bits += (ri_stride - ri_emustride) / 2) was incorrect because stride may be wider than visible width. Fix in 1.33 (bits += (ri_width - ri_emustride) / 2) was incorrect because units do not match; "bits" and "ri_emustride" are in bytes, but "width" is in pels. Works by accident for 8bpp displays. Change to bits += ((ri_width * bpp / 8) - ri_emustride) / 2 to correctly account for visible width and bpp. | |||
| 2001-02-02 | Now does character remapping depending on font encoding. | marcus | |
| 2001-01-21 | Rasops supports 4bit depth. | takemura | |
| 2001-01-12 | The mask tables have no excuse for being in the data segment. | bjh21 | |
| 2000-12-19 | Fix an error in xoffset calculation. Revealed in the case when | nisimura | |
| ri_width is less than ri_stride and screen is layouted RI_CENTERed. | |||
| 2000-06-13 | Use my proper name. | ad | |
| 2000-06-12 | Let this build on LP64 if DEBUG is defined. | sommerfeld | |
| 2000-04-20 | Put the rasops attributes in conf/files so that everyone can run | thorpej | |
| config(8) without pulling in files.rasops. There is prior art for this, e.g. audio. | |||
| 2000-04-12 | * Spell shift counts in decimal and masks in hex | pk | |
| * Optimize numerous array references * Cleanup whitespace turds | |||
| 2000-04-05 | Advance index into rasops_cmap for each color, not per triplet. | nathanw | |
| This makes highlighing and color possible on truecolor displays. | |||
| 2000-04-04 | Fix computation of ri_xorigin in RI_CENTER case; convery from bytes to | nathanw | |
| pixels, not from bytes to bytes^2/pixel. | |||
| 2000-03-14 | Resolve LP64 issues. | nisimura | |
| 2000-02-12 | Misplaced #endif. | ad | |
| 2000-02-12 | Fix the unaligned accesses discovered by dbj. | ad | |
| 2000-01-06 | replace WSFONT_L2R by WSDISPLAY_FONTORDER_L2R to compile again. | shin | |
| 1999-12-16 | Dispatch another nit. | ad | |
| 1999-12-14 | Note that per-depth initialization functions shouldn't be called by mere | ad | |
| mortals. | |||
| 1999-12-14 | The ri_hw member was added to 'struct rasops_info'. This does the same thing | ad | |
| as ri_priv; since ri_priv is not used anywhere in the kernel, nuke it. | |||
| 1999-12-04 | -use the right namespace for screen capabilities | drochner | |
| -make attribute decomposing a bit more friendly if the caller doesn't care about underlines | |||
| 1999-12-02 | -initialize the colormap completely at compile time, to allow drivers | drochner | |
| to use it early -now we can declare it "const" (as "rasops_isgray[]", while we are here) -don't use the fg/bg colors in ...alloc_attr() if the WSATTR_WSCOLORS flag was not given - use reasonable defaults instead -add an opaque "ri_hw" member to "rasops_info", for driver use | |||
| 1999-11-06 | Possible typo. | enami | |
| 1999-11-05 | In rasops_do_cursor(), don't pull the mask from ri_devcmap[], just use ~0. | ad | |
| Needed to make cursor DTRT on NetBSD/hpcmips - from takemura. | |||
| 1999-10-24 | Wrap a line properly. | ad | |
| 1999-10-23 | - New option (RASOPS_SMALL) for the tight-fisted. | ad | |
| - Don't use int32_t/u_int32_t unless we must. - Remove C++ single line comment delimeters that crept in. - Remove defs pertaining to byte granularity 'ragged-edge' bitmasks. - Move all declarations of per-depth initialization functions to rasops.h. - Other minor cleanup. | |||
| 1999-10-07 | Note some ideas from Toru Nishimura. | ad | |
| 1999-10-04 | Use proper mask when RI_FORCEMONO is set and XORing cursor. | ad | |
| 1999-09-17 | - Collapse forward and reverse cases in rasops_copyrows() into one | ad | |
| - Pull in opt_rasops.h so we know if clipping is enabled - Some KNF | |||
| 1999-09-17 | Clean up attribute allocation some more. | ad | |
| 1999-08-31 | Pass color value through ri->ri_devcmap before writing. | ad | |
| 1999-08-26 | Small consistency nit. | thorpej | |
| 1999-08-26 | Make monochrome attribte allocation a bit more obvious. | thorpej | |
